From 2b36faa58ae58401a3bb142b0fdc2d14a8dd1240 Mon Sep 17 00:00:00 2001 From: Tomas Coufal Date: Thu, 10 May 2018 17:02:52 +0200 Subject: [PATCH] Update refresher spec --- .../google/cloud_manager/refresh_parser.rb | 8 +- .../google/network_manager/refresh_parser.rb | 8 +- .../google/cloud_manager/refresher_spec.rb | 702 +- .../google/cloud_manager/refresher.yml | 72471 ++++++++++++++-- 4 files changed, 65674 insertions(+), 7515 deletions(-) diff --git a/app/models/manageiq/providers/google/cloud_manager/refresh_parser.rb b/app/models/manageiq/providers/google/cloud_manager/refresh_parser.rb index bc297262..6fe96686 100644 --- a/app/models/manageiq/providers/google/cloud_manager/refresh_parser.rb +++ b/app/models/manageiq/providers/google/cloud_manager/refresh_parser.rb @@ -129,7 +129,7 @@ def parse_volume(volume) zone_id = parse_uid_from_url(volume.zone) new_result = { - :ems_ref => volume.id, + :ems_ref => volume.id.to_s, :name => volume.name, :status => volume.status, :creation_time => volume.creation_timestamp, @@ -150,7 +150,7 @@ def parse_volume(volume) def parse_snapshot(snapshot) new_result = { - :ems_ref => snapshot.id, + :ems_ref => snapshot.id.to_s, :type => "ManageIQ::Providers::Google::CloudManager::CloudVolumeSnapshot", :name => snapshot.name, :status => snapshot.status, @@ -164,7 +164,7 @@ def parse_snapshot(snapshot) end def parse_storage_as_template(storage) - uid = storage.id + uid = storage.id.to_s name = storage.name name ||= uid type = ManageIQ::Providers::Google::CloudManager::Template.name @@ -209,7 +209,7 @@ def parse_ssh_key(ssh_key) end def parse_instance(instance) - uid = instance.id + uid = instance.id.to_s name = instance.name name ||= uid diff --git a/app/models/manageiq/providers/google/network_manager/refresh_parser.rb b/app/models/manageiq/providers/google/network_manager/refresh_parser.rb index c49dcdaa..252538ca 100644 --- a/app/models/manageiq/providers/google/network_manager/refresh_parser.rb +++ b/app/models/manageiq/providers/google/network_manager/refresh_parser.rb @@ -405,7 +405,7 @@ def parse_load_balancer_health_check(target_pool) :healthy_threshold => health_check.healthy_threshold, :load_balancer => load_balancer, :load_balancer_listener => load_balancer_listener, - :load_balancer_health_check_members => parse_load_balancer_health_check_members(target_pool) + :load_balancer_health_check_members => parse_load_balancer_health_check_members(target_pool) || [] } [uid, new_result] end @@ -573,10 +573,12 @@ def parse_cloud_subnet_network_port(cloud_subnet_network_port, subnet_id) def parse_network_port(network_port) uid = network_port[:network_ip] cloud_subnet_network_ports = [ - parse_cloud_subnet_network_port(network_port, subnets_by_link(network_port).try(:id))] + parse_cloud_subnet_network_port(network_port, subnets_by_link(network_port).try(:[], :id)) + ] device = parent_manager_fetch_path(:vms, network_port[:device_id]) security_groups = [ - @data_index.fetch_path(:security_groups, parse_uid_from_url(network_port[:network]))] + @data_index.fetch_path(:security_groups, parse_uid_from_url(network_port[:network])) + ] new_result = { :type => self.class.network_port_type, diff --git a/spec/models/manageiq/providers/google/cloud_manager/refresher_spec.rb b/spec/models/manageiq/providers/google/cloud_manager/refresher_spec.rb index e3412886..195dc478 100644 --- a/spec/models/manageiq/providers/google/cloud_manager/refresher_spec.rb +++ b/spec/models/manageiq/providers/google/cloud_manager/refresher_spec.rb @@ -1,8 +1,38 @@ describe ManageIQ::Providers::Google::CloudManager::Refresher do + let(:cloud_network) { CloudNetwork.find_by(:name => "default") } + let(:cloud_subnet) { CloudSubnet.find_by(:name => "default") } + let(:cloud_volume) { CloudVolume.find_by(:name => "instance-group-1-gvej") } + let(:cloud_volume_snapshot) { CloudVolumeSnapshot.find_by(:name => "test-snapshot-1") } + let(:flavor) { Flavor.find_by(:name => "n1-standard-1") } + let(:floating_ip_1) { FloatingIp.find_by(:address => "35.184.135.147") } + let(:floating_ip_2) { FloatingIp.find_by(:address => "35.194.238.83") } + let(:floating_ip_3) { FloatingIp.find_by(:address => "35.194.238.83") } + let(:key_pair) { AuthPrivateKey.find_by(:name => "gke-4866da88e59a4051ce37") } + let(:load_balancer) { LoadBalancer.find_by(:name => "test-first-load-balancer-forwarding-rule") } + let(:security_group) { SecurityGroup.find_by(:name => "lkhomenk-network") } + let(:zone_central) { AvailabilityZone.find_by(:ems_ref => "us-central1-a") } + let(:zone_east) { AvailabilityZone.find_by(:ems_ref => "us-east1-c") } + let(:vm_powered_on) { Vm.find_by(:name => "instance-group-1-gvej") } + let(:vm_powered_off) { Vm.find_by(:name => "simaishi-g3") } + let(:vm_preemptible) { Vm.find_by(:name => "preemptible") } + let(:image_template) { ManageIQ::Providers::Google::CloudManager::Template.find_by(:name => "rhel-7-v20180510") } + let(:image_location) { "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180510" } + let(:snapshot_template) { ManageIQ::Providers::Google::CloudManager::Template.find_by(:name => "test-snapshot-1") } + let(:snapshot_location) { "https://www.googleapis.com/compute/v1/projects/red-hat-cloudforms-support/global/snapshots/test-snapshot-1" } + before(:each) do @ems = FactoryGirl.create(:ems_google_with_vcr_authentication) end + MODELS = %i( + availability_zone cloud_network cloud_subnet disk ext_management_system flavor floating_ip + guest_device hardware load_balancer load_balancer_health_check load_balancer_health_check_member + load_balancer_listener load_balancer_listener_pool load_balancer_pool load_balancer_pool_member + load_balancer_pool_member_pool miq_template network network_port network_router operating_system + orchestration_stack orchestration_stack_output orchestration_stack_parameter orchestration_stack_resource + orchestration_template relationship resource_group security_group vm vm_or_template + ).freeze + it "will perform a full refresh" do 2.times do # Run twice to verify that a second run with existing data does not change anything @ems.reload @@ -22,9 +52,7 @@ assert_specific_load_balancer assert_specific_security_group assert_specific_flavor - assert_specific_custom_flavor assert_specific_vm_powered_on - assert_specific_vm_with_proper_subnets assert_specific_vm_powered_off assert_specific_vm_preemptible assert_specific_image_template @@ -36,74 +64,45 @@ def expected_table_counts { - :ext_management_system => 2, - :flavor => 22, - :availability_zone => 24, - :vm_or_template => 779, - :vm => 6, - :miq_template => 773, - :disk => 6, - :guest_device => 0, - :hardware => 6, - :load_balancer => 1, - :load_balancer_listener => 1, - :load_balancer_pool => 1, - :load_balancer_pool_member => 1, - :load_balancer_health_checks => 1, - :load_balancer_health_check_members => 1, - :network => 0, - :operating_system => 779, - :relationship => 11, - :miq_queue => 780, - :orchestration_template => 0, - :orchestration_stack => 0, - :orchestration_stack_parameter => 0, - :orchestration_stack_output => 0, - :orchestration_stack_resource => 0, - :security_group => 3, - :network_port => 6, - :cloud_network => 3, - :floating_ip => 3, - :network_router => 0, - :cloud_subnet => 9, - :key_pair => 4, + :availability_zone => 46, + :cloud_network => 3, + :cloud_subnet => 18, + :disk => 15, + :ext_management_system => 2, + :flavor => 29, + :floating_ip => 13, + :guest_device => 0, + :hardware => 15, + :key_pair => 1, + :load_balancer => 4, + :load_balancer_health_check_member => 1, + :load_balancer_health_check => 1, + :load_balancer_listener => 4, + :load_balancer_pool => 3, + :load_balancer_listener_pool => 4, + :load_balancer_pool_member => 4, + :load_balancer_pool_member_pool => 4, + :miq_template => 1631, + :network => 0, + :network_port => 15, + :network_router => 0, + :operating_system => 1643, + :orchestration_stack => 0, + :orchestration_stack_output => 0, + :orchestration_stack_parameter => 0, + :orchestration_stack_resource => 0, + :orchestration_template => 0, + :relationship => 18, + :resource_group => 0, + :security_group => 3, + :vm => 15, + :vm_or_template => 1646, } end def assert_table_counts - actual = { - :ext_management_system => ExtManagementSystem.count, - :flavor => Flavor.count, - :availability_zone => AvailabilityZone.count, - :vm_or_template => VmOrTemplate.count, - :vm => Vm.count, - :miq_template => MiqTemplate.count, - :disk => Disk.count, - :guest_device => GuestDevice.count, - :hardware => Hardware.count, - :load_balancer => LoadBalancer.count, - :load_balancer_listener => LoadBalancerListener.count, - :load_balancer_pool => LoadBalancerPool.count, - :load_balancer_pool_member => LoadBalancerPoolMember.count, - :load_balancer_health_checks => LoadBalancerHealthCheck.count, - :load_balancer_health_check_members => LoadBalancerHealthCheckMember.count, - :network => Network.count, - :operating_system => OperatingSystem.count, - :relationship => Relationship.count, - :miq_queue => MiqQueue.count, - :orchestration_template => OrchestrationTemplate.count, - :orchestration_stack => OrchestrationStack.count, - :orchestration_stack_parameter => OrchestrationStackParameter.count, - :orchestration_stack_output => OrchestrationStackOutput.count, - :orchestration_stack_resource => OrchestrationStackResource.count, - :security_group => SecurityGroup.count, - :network_port => NetworkPort.count, - :cloud_network => CloudNetwork.count, - :floating_ip => FloatingIp.count, - :network_router => NetworkRouter.count, - :cloud_subnet => CloudSubnet.count, - :key_pair => AuthPrivateKey.count, - } + actual = Hash[MODELS.collect { |m| [m, m.to_s.classify.constantize.count] }] + actual[:key_pair] = AuthPrivateKey.count expect(actual).to eq expected_table_counts end @@ -120,244 +119,162 @@ def assert_ems end def assert_specific_zone - @zone = ManageIQ::Providers::Google::CloudManager::AvailabilityZone.find_by_ems_ref("us-east1-b") - expect(@zone).to have_attributes( - :name => "us-east1-b", + expect(zone_east).to have_attributes( + :name => "us-east1-c", :ems_id => @ems.id ) - @zone_central = ManageIQ::Providers::Google::CloudManager::AvailabilityZone.find_by_ems_ref("us-central1-b") - expect(@zone_central).to have_attributes( - :name => "us-central1-b", + expect(zone_central).to have_attributes( + :name => "us-central1-a", :ems_id => @ems.id ) end def assert_specific_key_pair - # Find an ssh key added to a single vm - @kp = ManageIQ::Providers::Google::CloudManager::AuthKeyPair.where(:name => "root").first - expect(@kp).to have_attributes( - :name => "root", - :fingerprint => "97:c9:58:c8:42:32:3d:e1:47:a9:e6:66:93:51:6a:ae:a9:cb:ee:4a" - ) - - # Find an ssh key added to the whole project - @project_kp = ManageIQ::Providers::Google::CloudManager::AuthKeyPair.where(:name => "user2").first - expect(@project_kp).to have_attributes( - :name => "user2", - :fingerprint => "db:46:06:c9:4b:af:d7:18:b4:1d:d0:af:bc:d6:2e:26:48:bc:7d:17" + expect(key_pair).to have_attributes( + :name => "gke-4866da88e59a4051ce37", + :fingerprint => "a5:09:ea:89:2b:82:63:66:0b:38:d0:78:a5:a5:02:fb:05:f4:4f:33" ) end def assert_specific_cloud_network - @cn = CloudNetwork.where(:name => "default").first - expect(@cn).to have_attributes( + expect(cloud_network).to have_attributes( :name => "default", - :ems_ref => "183954628405178359", - :cidr => "10.240.0.0/16", + :ems_ref => "7587328054479720388", + :cidr => nil, :status => "active", :enabled => true ) end def assert_specific_cloud_subnet - @cs = CloudSubnet.where(:name => "default").first - expect(@cs).to have_attributes( + expect(cloud_subnet).to have_attributes( :name => "default", - :ems_ref => "183954628405178359", - :cidr => "10.240.0.0/16", - :gateway => "10.240.0.1", + :ems_ref => "3712394189059902205", + :cidr => "10.138.0.0/20", + :gateway => "10.138.0.1", :status => "active", - :cloud_network_id => @cn.id + :cloud_network_id => cloud_network.id ) end def assert_specific_floating_ips - @assigned_floating_ip = FloatingIp.where(:address => "104.197.50.240").first - expect(@assigned_floating_ip.vm).not_to eql(nil) - expect(@assigned_floating_ip.network_port.device).not_to eql(nil) + expect(floating_ip_1.vm).not_to eql(nil) + expect(floating_ip_1.network_port.device).not_to eql(nil) - unassigned_floating_ip = FloatingIp.where(:address => "104.196.55.145").first - expect(unassigned_floating_ip.vm).to eql(nil) - expect(unassigned_floating_ip.network_port).to eql(nil) + expect(floating_ip_2.vm).to eql(nil) + expect(floating_ip_2.network_port).to eql(nil) end def assert_specific_load_balancer - lb = LoadBalancer.where(:name => "foo-lb-forwarding-rule").first - - expect(lb).to have_attributes( - :name => "foo-lb-forwarding-rule", - :ems_ref => "1778652908557222005", + expect(load_balancer).to have_attributes( + :name => "test-first-load-balancer-forwarding-rule", + :ems_ref => "3192052763601282961", :type => "ManageIQ::Providers::Google::NetworkManager::LoadBalancer" ) - expect(lb.load_balancer_listeners.first).to have_attributes( - :name => "foo-lb-forwarding-rule", - :ems_ref => "1778652908557222005", + expect(load_balancer.load_balancer_listeners.first).to have_attributes( + :name => "test-first-load-balancer-forwarding-rule", + :ems_ref => "3192052763601282961", :type => "ManageIQ::Providers::Google::NetworkManager::LoadBalancerListener", :load_balancer_protocol => "TCP", :instance_protocol => "TCP", - :load_balancer_port_range => 61000...61002, - :instance_port_range => 61000...61002 + :load_balancer_port_range => 80...81, + :instance_port_range => 80...81 ) - expect(lb.load_balancer_pools.first).to have_attributes( - :name => "foo-lb", - :ems_ref => "7341375068641214585", + expect(load_balancer.load_balancer_pools.first).to have_attributes( + :name => "test-first-load-balancer", + :ems_ref => "9047195615959852949", :type => "ManageIQ::Providers::Google::NetworkManager::LoadBalancerPool", ) - expect(lb.load_balancer_pool_members.map { |m| m.vm.name }) - .to include("subnet-test") - expect(lb.load_balancer_health_checks.first).to have_attributes( - :name => "foo-healthcheck", + expect(load_balancer.load_balancer_pool_members.map { |m| m.vm.name }).to include("load-balancer-1") + + lb_health_check = load_balancer.load_balancer_health_checks.first + expect(lb_health_check).to have_attributes( + :name => "test-lb-health-check", :type => "ManageIQ::Providers::Google::NetworkManager::LoadBalancerHealthCheck", - :ems_ref => "1778652908557222005_7341375068641214585_5620697980296979925", + :ems_ref => "3192052763601282961_9047195615959852949_5437000699954601152", :protocol => "HTTP", :port => 80, - :url_path => "/foopath", - :interval => 60, - :timeout => 30, + :url_path => "/", + :interval => 5, + :timeout => 5, :healthy_threshold => 2, - :unhealthy_threshold => 3) - expect(lb.load_balancer_health_checks.first.load_balancer_health_check_members.first).to have_attributes( - :status => "OutOfService" + :unhealthy_threshold => 2 ) - expect(lb.load_balancer_health_checks.first.load_balancer_health_check_members.first.load_balancer_pool_member.vm.name)\ - .to eql("subnet-test") + expect(lb_health_check.load_balancer_health_check_members.first).to have_attributes(:status => "OutOfService") + expect(lb_health_check.load_balancer_health_check_members.first.load_balancer_pool_member.vm.name).to eql("load-balancer-1") end def assert_specific_security_group - @sg = SecurityGroup.where(:name => "default").first - expect(@sg).to have_attributes( - :name => "default", - :ems_ref => "default" + expect(security_group).to have_attributes( + :name => "lkhomenk-network", + :ems_ref => "lkhomenk-network" ) - expected_firewall_rules = [ - { - :name => "default-allow-icmp", - :host_protocol => "ICMP", - :direction => "inbound", - :port => -1, - :end_port => -1, - :source_ip_range => "0.0.0.0/0" - }, - { - :name => "default-allow-internal", - :host_protocol => "ICMP", - :direction => "inbound", - :port => -1, - :end_port => -1, - :source_ip_range => "10.240.0.0/16" - }, - { - :name => "default-allow-internal", - :host_protocol => "TCP", - :direction => "inbound", - :port => 0, - :end_port => 65535, - :source_ip_range => "10.240.0.0/16" - }, - { - :name => "default-allow-internal", - :host_protocol => "UDP", - :direction => "inbound", - :port => 0, - :end_port => 65535, - :source_ip_range => "10.240.0.0/16" - }, - { - :name => "default-allow-rdp", - :host_protocol => "TCP", - :direction => "inbound", - :port => 3389, - :end_port => nil, - :source_ip_range => "0.0.0.0/0" - }, - { - :name => "default-allow-ssh", - :host_protocol => "TCP", - :direction => "inbound", - :port => 22, - :end_port => nil, - :source_ip_range => "0.0.0.0/0" - }, - ] - - expect(@sg.firewall_rules.size).to eq(6) - - ordered_fw_rules = @sg.firewall_rules.order( - :name, :host_protocol, :direction, :port, :end_port, :source_ip_range) - - ordered_fw_rules.zip(expected_firewall_rules).each do |actual, expected| - expect(actual).to have_attributes(expected) - end - end - - def assert_specific_flavor - @flavor = ManageIQ::Providers::Google::CloudManager::Flavor.where(:name => "f1-micro").first - expect(@flavor).to have_attributes( - :name => "f1-micro", - :ems_ref => "f1-micro", - :description => "1 vCPU (shared physical core) and 0.6 GB RAM", - :enabled => true, - :cpus => 1, - :memory => 643825664, + expect(security_group.firewall_rules.size).to eq(1) + expect(security_group.firewall_rules.first).to have_attributes( + :name => "some-rule", + :host_protocol => "ALL", + :direction => "inbound", + :port => -1, + :end_port => -1, + :source_ip_range => "0.0.0.0/0" ) - - expect(@flavor.ext_management_system).to eq(@ems) end - def assert_specific_custom_flavor - custom_flavor = ManageIQ::Providers::Google::CloudManager::Flavor.where(:name => "custom-1-2048").first - expect(custom_flavor).to have_attributes( - :name => "custom-1-2048", - :ems_ref => "custom-1-2048", - :description => "Custom created machine type.", + def assert_specific_flavor + expect(flavor).to have_attributes( + :name => "n1-standard-1", + :ems_ref => "n1-standard-1", + :description => "1 vCPU, 3.75 GB RAM", :enabled => true, :cpus => 1, - :memory => 2147483648, + :memory => 4026531840 ) - expect(custom_flavor.ext_management_system).to eq(@ems) - expect(custom_flavor.vms.count).to eq(1) - expect(custom_flavor.vms.first.name).to eq("instance-custom-machine-type") + expect(flavor.ext_management_system).to eq(@ems) end def assert_specific_vm_powered_on - v = ManageIQ::Providers::Google::CloudManager::Vm.where(:name => "rhel7", :raw_power_state => "RUNNING").first - expect(v).to have_attributes( - :template => false, - :ems_ref => "5220078748954475260", - :ems_ref_obj => nil, - :uid_ems => "5220078748954475260", - :vendor => "google", - :power_state => "on", - :location => "unknown", - :tools_status => nil, + expect(vm_powered_on).to have_attributes( :boot_time => nil, - :standby_action => nil, :connection_state => nil, :cpu_affinity => nil, + :cpu_limit => nil, + :cpu_reserve => nil, + :cpu_reserve_expand => nil, + :cpu_shares => nil, + :cpu_shares_level => nil, + :ems_ref => "9028819323520596299", + :ems_ref_obj => nil, + :location => "unknown", + :memory_limit => nil, :memory_reserve => nil, :memory_reserve_expand => nil, - :memory_limit => nil, :memory_shares => nil, :memory_shares_level => nil, - :cpu_reserve => nil, - :cpu_reserve_expand => nil, - :cpu_limit => nil, - :cpu_shares => nil, - :cpu_shares_level => nil + :power_state => "on", + :raw_power_state => "RUNNING", + :standby_action => nil, + :template => false, + :tools_status => nil, + :uid_ems => "9028819323520596299", + :vendor => "google" ) - expect(v.ext_management_system).to eql(@ems) - expect(v.availability_zone).to eql(@zone) - expect(v.flavor).to eql(@flavor) - expect(v.operating_system.product_name).to eql("linux_redhat") - expect(v.custom_attributes.size).to eql(0) - expect(v.snapshots.size).to eql(0) - expect(v.preemptible?).to eql(false) - - assert_specific_vm_powered_on_hardware(v) + expect(vm_powered_on.ext_management_system).to eql(@ems) + expect(vm_powered_on.availability_zone).to eql(zone_central) + expect(vm_powered_on.flavor).to eql(flavor) + expect(vm_powered_on.operating_system.product_name).to eql("linux_debian") + expect(vm_powered_on.custom_attributes.size).to eql(0) + expect(vm_powered_on.snapshots.size).to eql(0) + expect(vm_powered_on.preemptible?).to eql(false) + expect(vm_powered_on.key_pairs.first).to eql(key_pair) + + assert_specific_vm_powered_on_hardware(vm_powered_on) + assert_specific_vm_powered_on_hardware_disks(vm_powered_on) + assert_specific_vm_powered_on_networks(vm_powered_on) + assert_specific_vm_powered_on_floating_ips(vm_powered_on) end def assert_specific_vm_powered_on_hardware(v) @@ -367,38 +284,13 @@ def assert_specific_vm_powered_on_hardware(v) :bios => nil, :annotation => nil, :cpu_total_cores => 1, - :memory_mb => 614, + :memory_mb => 3840, :bitness => nil, :virtualization_type => nil ) expect(v.hardware.guest_devices.size).to eql(0) expect(v.hardware.nics.size).to eql(0) - - assert_specific_vm_powered_on_networks(v) - assert_specific_vm_powered_on_hardware_disks(v) - end - - def assert_specific_vm_powered_on_networks(v) - expect(v.cloud_networks.size).to eql(1) - expect(v.cloud_subnets.size).to eql(1) - expect(v.floating_ips.size).to eql(1) - expect(v.network_ports.size).to eql(1) - expect(v.ipaddresses.size).to eql(2) - - expect(v.network_ports.first.ipaddresses.first).to eq('10.240.0.2') - - network = v.cloud_networks.where(:name => 'default').first - expect(network).to have_attributes( - :cidr => "10.240.0.0/16", - ) - - subnet = v.cloud_subnets.where(:name => "default").first - expect(subnet).to have_attributes( - :cidr => "10.240.0.0/16", - :gateway => "10.240.0.1", - :cloud_network_id => network.id - ) end def assert_specific_vm_powered_on_hardware_disks(v) @@ -406,176 +298,156 @@ def assert_specific_vm_powered_on_hardware_disks(v) disk = v.hardware.disks.first expect(disk).to have_attributes( - :device_name => "rhel7", + :device_name => "instance-template-1", :device_type => "disk", :location => "0", :controller_type => "google", :size => 10.gigabyte, :backing_type => "CloudVolume" ) - expect(disk.backing).to eql(CloudVolume.where(:name => "rhel7").first) + expect(disk.backing).to eql(cloud_volume) end - def assert_specific_vm_with_proper_subnets - v = ManageIQ::Providers::Google::CloudManager::Vm.where(:name => "subnet-test", :raw_power_state => "RUNNING").first - expect(v).to have_attributes( - :template => false, - :ems_ref => "6019338445080368070", - :ems_ref_obj => nil, - :uid_ems => "6019338445080368070", - :vendor => "google", - :power_state => "on", - :location => "unknown", - :tools_status => nil, - :boot_time => nil, - :standby_action => nil, - :connection_state => nil, - :cpu_affinity => nil, - :memory_reserve => nil, - :memory_reserve_expand => nil, - :memory_limit => nil, - :memory_shares => nil, - :memory_shares_level => nil, - :cpu_reserve => nil, - :cpu_reserve_expand => nil, - :cpu_limit => nil, - :cpu_shares => nil, - :cpu_shares_level => nil - ) + def assert_specific_vm_powered_on_networks(v) + expect(v.cloud_networks.size).to eql(1) + expect(v.cloud_subnets.size).to eql(1) + expect(v.network_ports.size).to eql(1) + expect(v.ipaddresses.size).to eql(2) - expect(v.ext_management_system).to eql(@ems) - expect(v.availability_zone).to eql(@zone_central) - expect(v.flavor).to eql(@flavor) - expect(v.operating_system.product_name).to eql("linux_debian") - expect(v.floating_ip).to eql(@assigned_floating_ip) - expect(v.floating_ips.first).to eql(@assigned_floating_ip) - expect(v.network_ports.first.floating_ip).to eql(@assigned_floating_ip) - expect(v.network_ports.first.floating_ips.first).to eql(@assigned_floating_ip) - end + expect(v.network_ports.first.ipaddresses.first).to eq('10.128.0.3') - def assert_specific_cloud_volume - v = CloudVolume.where( - :name => "rhel7" - ).first - - expect(v.ems_ref).to eql("7616431006268085360") - expect(v.name).to eql("rhel7") - expect(v.status).to eql("READY") - expect(v.creation_time.to_s).to eql("2015-11-18 21:16:15 UTC") - expect(v.volume_type).to eql("pd-standard") - expect(v.description).to eql(nil) - expect(v.size).to eql(10.gigabyte) - expect(v.availability_zone.name).to eql("us-east1-b") + expect(v.cloud_networks.first).to have_attributes(:name => 'default') + expect(v.cloud_networks.first).to eq(v.cloud_network) + expect(v.cloud_subnets.first).to have_attributes(:name => 'default-175e7dd38602e139') + expect(v.cloud_subnets.first).to eq(v.cloud_subnet) end - def assert_specific_cloud_volume_snapshot - v = CloudVolumeSnapshot.where(:name => "wheezy-snapshot-1").first - expect(v.ems_ref).to eql("9048940034142591751") - expect(v.name).to eql("wheezy-snapshot-1") - expect(v.description).to be_nil - expect(v.status).to eql("READY") - expect(v.creation_time.to_s).to eql("2015-11-18 20:56:08 UTC") - expect(v.size).to eql(10.gigabyte) + def assert_specific_vm_powered_on_floating_ips(v) + expect(v.floating_ips.size).to eql(1) + expect(v.floating_ip).to eql(floating_ip_1) + expect(v.floating_ips.first).to eql(floating_ip_1) + expect(v.network_ports.first.floating_ip).to eql(floating_ip_1) + expect(v.network_ports.first.floating_ips.first).to eql(floating_ip_1) end def assert_specific_vm_powered_off - v = ManageIQ::Providers::Google::CloudManager::Vm.where( - :name => "wheezy", - :raw_power_state => "TERMINATED").first - - zone1 = ManageIQ::Providers::Google::CloudManager::AvailabilityZone.where(:name => "us-central1-b").first - - assert_specific_vm_powered_off_attributes(v) - - expect(v.ext_management_system).to eql(@ems) - expect(v.availability_zone).to eql(zone1) - expect(v.floating_ip).to be_nil - expect(v.cloud_network).to eql(@cn) - expect(v.cloud_networks.first).to eql(@cn) - expect(v.cloud_subnet).to eql(@cs) - expect(v.cloud_subnets.first).to eql(@cs) - expect(v.operating_system.product_name).to eql("linux_debian") - # This should have keys added on just this vm (@kp) as well as - # on the whole project (@project_kp) - expect(v.key_pairs.to_a).to eql([@kp, @project_kp]) - expect(v.custom_attributes.size).to eql(0) - expect(v.snapshots.size).to eql(0) - - assert_specific_vm_powered_off_hardware(v) - end - - def assert_specific_vm_powered_off_attributes(v) - expect(v).to have_attributes( - :template => false, - :ems_ref => "17122958274615180727", - :ems_ref_obj => nil, - :uid_ems => "17122958274615180727", - :vendor => "google", - :power_state => "off", - :location => "unknown", - :tools_status => nil, + expect(vm_powered_off).to have_attributes( :boot_time => nil, - :standby_action => nil, :connection_state => nil, :cpu_affinity => nil, + :cpu_limit => nil, + :cpu_reserve => nil, + :cpu_reserve_expand => nil, + :cpu_shares => nil, + :cpu_shares_level => nil, + :ems_ref => "3801021534917226736", + :ems_ref_obj => nil, + :location => "unknown", + :memory_limit => nil, :memory_reserve => nil, :memory_reserve_expand => nil, - :memory_limit => nil, :memory_shares => nil, :memory_shares_level => nil, - :cpu_reserve => nil, - :cpu_reserve_expand => nil, - :cpu_limit => nil, - :cpu_shares => nil, - :cpu_shares_level => nil + :power_state => "off", + :raw_power_state => "TERMINATED", + :standby_action => nil, + :template => false, + :tools_status => nil, + :uid_ems => "3801021534917226736", + :vendor => "google" ) + + expect(vm_powered_off.ext_management_system).to eql(@ems) + expect(vm_powered_off.availability_zone).to eql(zone_east) + expect(vm_powered_off.flavor).to eql(flavor) + expect(vm_powered_off.operating_system.product_name).to eql("unknown") + expect(vm_powered_off.custom_attributes.size).to eql(0) + expect(vm_powered_off.snapshots.size).to eql(0) + expect(vm_powered_off.preemptible?).to eql(false) + expect(vm_powered_off.key_pairs.first).to eql(key_pair) + + assert_specific_vm_powered_off_hardware(vm_powered_off) + assert_specific_vm_powered_off_hardware_disks(vm_powered_off) + assert_specific_vm_powered_off_networks(vm_powered_off) + assert_specific_vm_powered_off_floating_ips(vm_powered_off) end def assert_specific_vm_powered_off_hardware(v) expect(v.hardware).to have_attributes( - :guest_os => nil, - :guest_os_full_name => nil, - :bios => nil, - :annotation => nil, - :memory_mb => 614, - :cpu_total_cores => 1, - :bitness => nil + :guest_os => nil, + :guest_os_full_name => nil, + :bios => nil, + :annotation => nil, + :cpu_total_cores => 1, + :memory_mb => 3840, + :bitness => nil, + :virtualization_type => nil ) - expect(v.hardware.disks.size).to eql(1) expect(v.hardware.guest_devices.size).to eql(0) - expect(v.network_ports.size).to eql(1) - expect(v.cloud_networks.size).to eql(1) - expect(v.floating_ips.size).to eql(0) + expect(v.hardware.nics.size).to eql(0) + end + + def assert_specific_vm_powered_off_hardware_disks(v) + expect(v.hardware.disks.size).to eql(1) + + disk = v.hardware.disks.first + expect(disk).to have_attributes( + :device_name => "simaishi-g3", + :device_type => "disk", + :location => "0", + :controller_type => "google", + :size => 66.gigabyte, + :backing_type => "CloudVolume" + ) + + expect(disk.backing).to have_attributes(:name => "simaishi-g3") + end + + def assert_specific_vm_powered_off_networks(v) + expect(v.cloud_networks.size).to eql(1) + expect(v.cloud_subnets.size).to eql(1) + expect(v.network_ports.size).to eql(1) + expect(v.ipaddresses.size).to eql(1) + + expect(v.network_ports.first.ipaddresses.first).to eq('10.142.0.6') + + expect(v.cloud_networks.first).to have_attributes(:name => 'default') + expect(v.cloud_networks.first).to eq(v.cloud_network) + expect(v.cloud_subnets.first).to have_attributes(:name => 'default-372dec1aa369576e') + expect(v.cloud_subnets.first).to eq(v.cloud_subnet) + end + + def assert_specific_vm_powered_off_floating_ips(v) + expect(v.floating_ips.size).to eql(0) + expect(v.floating_ip).to eql(nil) + expect(v.floating_ips.first).to eql(nil) + expect(v.network_ports.first.floating_ip).to eql(nil) + expect(v.network_ports.first.floating_ips.first).to eql(nil) end def assert_specific_vm_preemptible - v = ManageIQ::Providers::Google::CloudManager::Vm.where(:name => "preemptible-1").first - expect(v).to have_attributes( + expect(vm_preemptible).to have_attributes( :raw_power_state => "TERMINATED", :template => false, - :ems_ref => "9023820458355785494", - :uid_ems => "9023820458355785494", + :ems_ref => "8920424377663102465", + :uid_ems => "8920424377663102465", :vendor => "google", :power_state => "off" ) - expect(v.preemptible?).to eql(true) + expect(vm_preemptible.preemptible?).to eql(true) end def assert_specific_image_template - name = "rhel-7-v20151104" - @template = ManageIQ::Providers::Google::CloudManager::Template.where(:name => name).first - expected_location = "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20151104" - - expect(@template).to have_attributes( + expect(image_template).to have_attributes( :template => true, - :ems_ref => "5670907071397924697", + :ems_ref => "532520468831844769", :ems_ref_obj => nil, - :uid_ems => "5670907071397924697", + :uid_ems => "532520468831844769", :vendor => "google", :power_state => "never", - :location => expected_location, + :location => image_location, :tools_status => nil, :boot_time => nil, :standby_action => nil, @@ -593,26 +465,21 @@ def assert_specific_image_template :cpu_shares_level => nil ) - expect(@template.ext_management_system).to eq(@ems) - expect(@template.operating_system.product_name).to eq("linux_redhat") - expect(@template.custom_attributes.size).to eq(0) - expect(@template.snapshots.size).to eq(0) + expect(image_template.ext_management_system).to eq(@ems) + expect(image_template.operating_system.product_name).to eq("linux_redhat") + expect(image_template.custom_attributes.size).to eq(0) + expect(image_template.snapshots.size).to eq(0) end def assert_specific_snapshot_template - name = "wheezy-snapshot-1" - @template = ManageIQ::Providers::Google::CloudManager::Template.where(:name => name).first - expected_location = - "https://www.googleapis.com/compute/v1/projects/civil-tube-113314/global/snapshots/wheezy-snapshot-1" - - expect(@template).to have_attributes( + expect(snapshot_template).to have_attributes( :template => true, - :ems_ref => "9048940034142591751", + :ems_ref => "4530445150875817520", :ems_ref_obj => nil, - :uid_ems => "9048940034142591751", + :uid_ems => "4530445150875817520", :vendor => "google", :power_state => "never", - :location => expected_location, + :location => snapshot_location, :tools_status => nil, :boot_time => nil, :standby_action => nil, @@ -630,9 +497,34 @@ def assert_specific_snapshot_template :cpu_shares_level => nil ) - expect(@template.ext_management_system).to eq(@ems) - expect(@template.operating_system.product_name).to eq("unknown") - expect(@template.custom_attributes.size).to eq(0) - expect(@template.snapshots.size).to eq(0) + expect(snapshot_template.ext_management_system).to eq(@ems) + expect(snapshot_template.operating_system.product_name).to eq("unknown") + expect(snapshot_template.custom_attributes.size).to eq(0) + expect(snapshot_template.snapshots.size).to eq(0) + end + + def assert_specific_cloud_volume + expect(cloud_volume).to have_attributes( + :ems_ref => "1368210998906894667", + :name => "instance-group-1-gvej", + :status => "READY", + :volume_type => "pd-standard", + :description => nil, + :size => 10.gigabyte, + :availability_zone => zone_central + ) + expect(cloud_volume.creation_time.to_s).to eql("2017-05-05 23:15:49 UTC") + end + + def assert_specific_cloud_volume_snapshot + expect(cloud_volume_snapshot).to have_attributes( + :name => "test-snapshot-1", + :ems_ref => "4530445150875817520", + :status => "READY", + :description => nil, + :encrypted => nil, + :size => 10.gigabyte + ) + expect(cloud_volume_snapshot.creation_time.to_s).to eql("2018-05-11 14:29:52 UTC") end end diff --git a/spec/vcr_cassettes/manageiq/providers/google/cloud_manager/refresher.yml b/spec/vcr_cassettes/manageiq/providers/google/cloud_manager/refresher.yml index 41b67e64..48361842 100644 --- a/spec/vcr_cassettes/manageiq/providers/google/cloud_manager/refresher.yml +++ b/spec/vcr_cassettes/manageiq/providers/google/cloud_manager/refresher.yml @@ -2,10 +2,10 @@ http_interactions: - request: method: post - uri: https://accounts.google.com/o/oauth2/token + uri: https://www.googleapis.com/oauth2/v3/token body: encoding: ASCII-8BIT - string: grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Ajwt-bearer&assertion=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpc3MiOiIxOTkyMDM0Mjg1NDQtY29tcHV0ZUBkZXZlbG9wZXIuZ3NlcnZpY2VhY2NvdW50LmNvbSIsImF1ZCI6Imh0dHBzOi8vYWNjb3VudHMuZ29vZ2xlLmNvbS9vL29hdXRoMi90b2tlbiIsImV4cCI6MTQ5NjQzMTU5NywiaWF0IjoxNDk2NDMxNDc3LCJzY29wZSI6Imh0dHBzOi8vd3d3Lmdvb2dsZWFwaXMuY29tL2F1dGgvY29tcHV0ZSBodHRwczovL3d3dy5nb29nbGVhcGlzLmNvbS9hdXRoL2RldnN0b3JhZ2UucmVhZF93cml0ZSBodHRwczovL3d3dy5nb29nbGVhcGlzLmNvbS9hdXRoL25kZXYuY2xvdWRtYW4gaHR0cHM6Ly93d3cuZ29vZ2xlYXBpcy5jb20vYXV0aC9jbG91ZC1wbGF0Zm9ybSJ9.QhbRM9YL4VOR_uTE4aKEhNKnW_dC878HK10d3RhpqtTSNa62pvikI1iNPiDPeJ_xmQWxTkwZrjWXtcMCYA8CuNUUisYjSLN0wZRdGMOpUzVlwYRO03xyfdx96K0crQXvsrUZchbAPVWeDgUDMhUxTK6ZB63OMngsD-nq7Ilq0ZseDQZ3Ga7CvbwjhxaeeZGIhywPfcimdJJoIPw2c-bozOZqWiQ3EcDdhdv3CUEWqh3rQm2YuLrcMADY-CT6fIiWHCOg5dWDrbQbaTadRuaQAfGK0-OvTqJmUt8cyTxqQwU34h4IUUXEhsUdYlrKUtGjWURL8493DQFzNE09am68-g + string: grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Ajwt-bearer&assertion=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpc3MiOiIxMzU3NzY1MTA2NjYtY29tcHV0ZUBkZXZlbG9wZXIuZ3NlcnZpY2VhY2NvdW50LmNvbSIsImF1ZCI6Imh0dHBzOi8vd3d3Lmdvb2dsZWFwaXMuY29tL29hdXRoMi92My90b2tlbiIsImV4cCI6MTUyNjA0OTIyOSwiaWF0IjoxNTI2MDQ5MTA5LCJzY29wZSI6Imh0dHBzOi8vd3d3Lmdvb2dsZWFwaXMuY29tL2F1dGgvY29tcHV0ZSBodHRwczovL3d3dy5nb29nbGVhcGlzLmNvbS9hdXRoL2RldnN0b3JhZ2UucmVhZF93cml0ZSBodHRwczovL3d3dy5nb29nbGVhcGlzLmNvbS9hdXRoL25kZXYuY2xvdWRtYW4gaHR0cHM6Ly93d3cuZ29vZ2xlYXBpcy5jb20vYXV0aC9jbG91ZC1wbGF0Zm9ybSJ9.D2z-cvUtyN6IA5Fjxj6hQ9mqIbgIA14foFKDLPMncWSctMBTTsQ0ZlWGHums09NfbROjqRRFo-157fXWkcK_j0wv2h7dSoBMAIQcawMwbS7R_DitAeabuBieHbZBYhfo6mTpxSVzn4tXOc7YlFX0GTsbdDvOnznCbZQ4fRQPpysxPuv9T5CmNS0U6gWWGjbeEd8hiEhM2010CDmfxpcAUSMhaHZA6QeM51IoGCaisMCFf8BWmQRCfPaWg2dFA11Ix0Y7XFmCu1wpOMnbGkpHtYDkw9yLdRfYTgOVEDnjaQgilqH4MqyoFvzCYL_FblL0X76rt3rg8FvIiPnFXop3pQ headers: User-Agent: - Faraday v0.9.2 @@ -20,10 +20,6 @@ http_interactions: code: 200 message: OK headers: - Content-Type: - - application/json; charset=utf-8 - X-Content-Type-Options: - - nosniff Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Pragma: @@ -31,1623 +27,12 @@ http_interactions: Expires: - Mon, 01 Jan 1990 00:00:00 GMT Date: - - Fri, 02 Jun 2017 19:25:37 GMT - Content-Disposition: - - attachment; filename="json.txt"; filename*=UTF-8''json.txt - Server: - - ESF - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: |- - { - "access_token" : "ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA", - "expires_in" : 3600, - "token_type" : "Bearer" - } - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:37 GMT -- request: - method: get - uri: https://www.googleapis.com/discovery/v1/apis/compute/v1/rest - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:26:26 GMT - Date: - - Fri, 02 Jun 2017 19:21:26 GMT - Etag: - - '"YWOzh2SDasdU84ArJnpYek-OMdg/UbDB7_K3R-uvPek__mbq9Pi-1gA"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Content-Length: - - '61976' - Age: - - '251' - Cache-Control: - - public, max-age=300, must-revalidate, no-transform - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - NI2KBULUkmI1hQZJt6yBFCqz0m8FpxeUsid3pipTOQdeIW4fu5UZQmGVcyyo - QSn4Cx3FFO+TmtVQonm2TAUsol5aOE4kN1F6mwKFNTxuocUtESBRtoFcTsI5 - JxrXC1H64VohRBv6c+uUr2p3WV3Al6tuTBqnXIH94CtW0ooXngl3NetAV/h1 - i+vbkZ49ugEVBPddVTHkdKoqphWGVWC0ffVE1p5MmuiLvO2/pI6oqHbDI5lM - 3Io/tbVucjUDmZur/t6hfqagUfTumt3yUfm2lOoxNbmqiOJ4EDuofavQt9TM - dKhUUXYBk8T0PG0AF+ir29NxSj7l0wMaTW3IUla+5oda25bqwLK1ETtz6lds - Ti24nDQGskrvuHp+KTb01SFY3g/WpFjDfB0BoS188hTQZDnVuivhIVxs+56E - Y1njBBFb+5gsHULtRxBusHS8+6K4qIZMrZiWdZvsHHXoR5ZOpli8g2cWpzzR - 8voKMA/t9yeVkPx30zoH4qvV5z+gIJxGEFDyyYNzLRxPZHh0f0HWpZ45alt2 - qHswt64yPKG8jZPfStam7ViX2nNT8AQ5c7WpaWdi2pmYdiamnYnpy/9WKxY/ - diYm9WZnYtqZmHYmpg3YiPs2MaERQqts6ogI3g8e3mhhqrUM1rE8PfuWbRnm - +NswZfzBbRjrpysyJRhLV5lQpFvZea6WXUoyEfkvR4W41zCC51AG64VF0fZe - w3VwIx+gVNtmauoGMuiDl0pT4TebVkXbBdv8qbTDmwfbnAAer6bVZouGxBnm - DvtC1PMf6yRucpw8jO6Yq4WtJ2WelS7A56WepKZ/usOoEw1U9XLJhgWfMOvK - 1m6sS4QDvgqCj/O9AEv2ZK8ODm5vb/evkuRqGoWLONuHu3gg7uPBzYsD4Xid - yR8HLA3RxLGXVe/1nz6bvkJdG+6pMHhr/xne0nvaRc3mb2srjagCtYYVu1v2 - SWWLyktUDOJ37pDRoD65r7hYcC7dxRsWdjwQsKIOdoeEpszQi8s8K5h0esJS - ruP7lEUg/C3C8aeIkCLwmUIoBKkrnExSLDIOhIs4PULdGl2i2Ci9LKwezPu8 - shtJNEyDskoJRaWGkRRQRxiaD2QW4TXOVRtk+cJMEYC962TBsvcgQZ2pRJct - bcpJl5xhaUkccCuAPb0RnD52BrtyGU4zUQgd++WNdaTVSTJeUg5MJUQUy6Nb - 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 - EH374lrE338v0e8BPkIdVlaNeXwtmzprpFfhPP7NJfz1wPhUyixmL8ifyVq5 - yB0TWZc7EHC1xFSYrlihlzBwyD3VDGkhayNrgq3RpD5aZhLVKnpHTLM3m1kx - e1v5WRPlBLOVqyu5TeNZ7JNU+aY2YD8D6kk7/MBVBNHNJ11MkuXF1FEUc+sN - sZXpMUzrL0yiUFz4bHQ6PGwfdwZGpeDX7cOfOr2j89dn8N+R58WwM3jfPTSL - Cx/2z5y/ztvHx+eDztvuac8sQtwd/jQ8H52O2sfnb1/r52+6g84H+MJoKhwu - sKbx4OzYHOxdp308end++K5z+JPxmHxHzL+Fx4Hn0fnbwelZv/TF+Um7B30N - fA2k14L1jrwlhFOJ+eb4FP00hsMjz5KF94fRuo8uGf1R9/Vx59zeUN5H6MB7 - XurtylXA41HxgfH3sNfuD9+dmofun/1weHx+2BmMgNc9tHcDed3uoW83hmev - i4seoffP6Bzz2gyRX/67VbTaeFv60nPO4k3/9PS4+BSnXtbXe2Da38J6PrR/ - Nl6CsAabacILthud9dDX6AFq+e5+rUpvsCxJa9AEqwsZUYjG0upWE63bJG1g - ZSERNE08rE/U+APXBdmv5n40emHpR+KRm2SuROhXqAdqawEm+lOZTyLMsmRM - 0jrbmoSN1FM1aXsJF0eNFcKPT8H6yNSfIrkOLkjkXq6UCEV+H2uqXyYD1X3q - LSXYrpRgHqHacivJeIZWjhjejlYgaimc9Tm1zodeVWqdD9pD+MlZfxu6N7FA - cmvc7Nx1hAx1ZtgMpSFLLlkI8GQjNRQt5FqzlTo1TFTayzzJxuE0Sj2RB94m - 9cmWJ2YqVH39+WKl2hW7UHXV9f5vLyyqoL9bjWodMLAR7xY1b22hdpP55ZTG - KcRykPOxCidVKq1HFtLDt0Z6GrxNk+Wi9G4VW210vazu/sRhie2aO1J17awv - t3jzrDxed4s6V68IJfd2+3Z670cWWig9wQrIh4GHHePo4qg0ZJnhAFgTQQkV - cD08ZTbeCF1JlbSKAbjC7v/M6Kp6R2qjK3FC9xZG7eIwo7JAaEt1cQngCBfY - FevmkJzoM8Vf4s3W+VOdINN6uNOE3HtAocnjYGCSL484svZFOJ/odyVGsjU6 - qEAwXvwgv296B8V2cY4SDJ9QLpjSiRO9OnmSAjuIrLCiqhW566oALg7f0Lmk - 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 - aScEzakpZMhEIJQeJEobZ3g4SOxTJ6PVTeceHpXgqhgl7pSmqhh9FMPYjEOF - B+cILQkth4SWAch4arcZTHCSgeVFskzjKRSn+7hesRZ+EFto1UXdzVVnfaGv - 4XfhnWMhySjDsW4fS2GbcKbYrvgzYDlK59fIINNUD36FycnH9xAFMJeZSwzk - JvNKK2CCHFpdKjrVi1IyVQ2XymwgmGzw6z8R+WNz0gRplK3WSh5PfvIi7Ajp - wWiUyhM7YprPKgEOQAoNbYKVICQus/XkRvZzd5NwXpf4Nz6Zcd6hVliQxBYB - h2xqVPX5VVCd2ZZawZYVfziIGILeitdycth6rhBFcJs1yXAUT6dIb1ZPa7ok - knM1yUmQlU1qHfxJcZygq8OqY/Bz4MYmwd+r4C/IuYEpAJ5Vvjyqe5WL+Rb+ - q7LaXsoY8a3tVVXTq0H0k1ggIyPqgDUFZGks/zUg3otX2a/Gcl9BOOKVHcdT - kJy0uKbiXlTQi1LnKHWOUucodY5S5yh1jlLnKHWOUucodU7OmMxkMpP7NJOb - I29DTA1k8/aiNPDnukTY7B78fXFnyRIWitsZoDgLmaBT/6pzRM6hgXu9EMXe - CD0JPa0pUmqIHgZcvwkE0mNmh77yTaMrtulGRqjqrcXdm2BPPxO3wV1P4wnu - P5XMzLMf3WzqBoSMS5bGOBXCo1R9LP52k6CvDN5qjE4la6vQqkJQdlrc25Xr - TouH/tiRYgwn22QYiwMuk7tn2Ti9vg892b//fvff7P8fPoMj/eOf//St4iRv - JfuFBBQJqCEJKPWbuACrAyUrMzHyDj3AfgJMPNtRcDm9BAos4bFmKr5V3OMy - A2bMcs7V/PgqW6/Eo6LQBuxdfLNICL+MJxMMQCjPzjgbrWfJfIXfi0wAQlhC - WGuKW626IT0qcDE1B4wBXUqt0fc9v+/4km8VDwg2G3TE4bKuAghQN/F8IngL - 8tZmDC5z4yGH2hvWvatZ8VGTCh1CgCLwJfC1V4vAd1Pga6DEMBE4WcVAxvSE - X/l0V+x1+wnUgmeiveL1lN10nXVmmhLQEtDaq0VA2yfQKhgYFKReKKqWH6ga - z3eE1ZKeAoHVLoekSWdRhs81XlRBZR8IFQkVu6GicYqHhYvJEnzIx6NRtp77 - UCqKbbriY3lvLWKGOe8JyrVBV76UC3TFoutAJkK5HWE9ZV4Djn847lB4SHKG - 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 - k/8PYxRsEHTbDAA= - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:37 GMT -- request: - method: get - uri: https://www.googleapis.com/discovery/v1/apis/resourceviews/v1beta1/rest - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:30:38 GMT - Date: - - Fri, 02 Jun 2017 19:25:38 GMT - Etag: - - '"YWOzh2SDasdU84ArJnpYek-OMdg/HxZRDFK7f86Z7kwjlvcp4S6C4Oc"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Content-Length: - - '2797' - Server: - - GSE - Cache-Control: - - public, max-age=300, must-revalidate, no-transform - Age: - - '0' - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - tkZnU2oAAA== - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:38 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/zones - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:38 GMT - Date: - - Fri, 02 Jun 2017 19:25:38 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/-5tjLoie18WLvPPv2JwxeHbnO44"' + - Fri, 11 May 2018 14:32:49 GMT Vary: - Origin - X-Origin Content-Type: - application/json; charset=UTF-8 - Content-Encoding: - - gzip X-Content-Type-Options: - nosniff X-Frame-Options: @@ -1657,232 +42,54 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAN2ay26jMBSG93mKKLMt4CsXP0MXs2BWo1kQ4rZME0BAGmmq - vvsYkrbQ2hijQCSkdBOfcuz/w/+xT/u6Wm+ek3S3YetNnB3yY8V//MtSfp+U - 1eZODCbNUF5kf3lclU6cvCR7qzpuuQUhxpA4dXR5Dq34oRTRv1fr9av4kT+5 - Dl2/PxchBC5fxAWPqiRLw+TAyyo65M04gK4FXAuSEHoMBQz6tudCC3gMvP9i - Gh14HRuVSWTxqKygFV2GdryMiySvH6uIEJmqYz3pza+fl68K/niJf6qqvGSO - czqd7Mcse9zzKE9KW6zGuazIeYFOjzbnR5XOZ+L3tHz/cJ+kz1fJ0hBwOosT - Sd7ujDDACTBstRi2S8awHYEBaTAQobkFaQgBI4QB33ZdrMMQazHES8YQm2Og - A0zJbzAI5akQ38awB0OaFdWT3pkkYTMC+cw+MZXOMs3RDDCqr2joIDR9biUJ - WziaEeZFdeYlQeMOQtPnYJKwhaMZYWiubtd4FkACRQgIo5hhaLsYCFoKNGV2 - HLJrJGEzovnMPjGazjLN0ehqzXc0yBuEpq/WSMIWjsa81kBwtUMxPxZZzq0T - 79ky0ph5oLRTT0fkywLNcRDt4Riipr5gRhDD1PaIL90pnZnsBuDYLR3HbgQO - rL+rBMK7QkgZbXAg7Ot3h6LWS2MWi8O8xAPt7hhsVsfSinlaFdEeWg9yGrKQ - eWC0Mk/Hors8cxRX62m1J6Io57KQhaIwL+EA6BsqEFgoCCFkCDDg2ggFWhQK - j5KFLBTFGIO62mmqPRHFYUoWslAUI+4cWFe6aVO6/brNSAPxsQEBKhS9V/Rv - 47NBmPh60VqYufy6Un2WH9cnJ/EByMZYI7/iEPttfHHymx9cEdYZ0cfb7zLq - 1TXBI/I+1ccs1C50i/bHjPKPMB9PV5KbhoeoA8Ct24SI2NCXX+MusyAa8yG3 - MR8yufxkjPl4g/pNRvKrT6bd8cXJP+LvF96gTqyR/P3mQ25jPnPIP8J84LCr - GQhBwLA4/FAhv/I+cL6rq9/+7vhs8k/cqGgtzFz+YXeAtvwB6pdf/fbfopM6 - o/xj3v4BpRc35kMY8cXHxs1/HPTIry69t2jVzSj/ufSu1n9EqgkSbVZvq/9o - W8xonSUAAA== + string: | + { + "access_token": "ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk", + "token_type": "Bearer", + "expires_in": 3600 + } http_version: - recorded_at: Fri, 02 Jun 2017 19:25:38 GMT + recorded_at: Fri, 11 May 2018 14:32:49 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/aggregated/machineTypes + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store Accept: - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:38 GMT - Date: - - Fri, 02 Jun 2017 19:25:38 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/ye-gPlzOYKrm_oIcj--R3XawlU4"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAO3dS29b1wFF4bl/haBOWiCUePkSpVmaApkkQNC4o6IDmqJl - NtYDohQ3CfLfS8qJLMnXJEXxnrUtr0kR6EWae/Wax/pA/vZiZ/en6dnx7tHO - 7vj89OL6avKX09H4zfRs8vKXi8nXJyeXk5PR1eT4u+nsaver+VdPb7724vL8 - v5Px1Wx/PP15+rZ1df1q0qqqbrfq7Y9uv2f/zk+avf/mq8npbP79v73Y2dn9 - 9fxsMtu/nrXGk7Ory9HbqjX641M7u/e+82jn34sPvv/UztI7vLiVm695fzer - drt9+6Hx5WR0NT0/ezk9ncyuRqcXi6/otKt+q121qsHL9uFRp3/U6+51q0Gr - PTy6861no9PJ4qtfV63T6fjy/PYTx5PZ+HJ6sfixN7e38/M3P/xr56+zN6PL - yfHOxZtfZtPx6O3O+Pxy8red0dnxTntvsPPt33f++fX3tz/j5Hp+d765uF78 - Qas/P3g6OT2//OX7V/OPDare7UdH/5ueXp/+MLmczfeYP2z/mM5+uvm+wfIv - +XH66+TbxQ/b7bYPOrc3vZhg8cH7I/z52dnk7evvpmc/Lb7izdXVxexof//d - u3d7J+fnJ28no4vpbG8+wf4fM+z/XO0vyaJm7Xt97H/02E5nP948jPOHZn4P - ri6vJzef+P2rDWPobBhD/xMxnFSt2eno7dvNY6j2Dh4bQ3XQa38JNXz04G67 - hl67Gmzz0nBWtd5MT96ML65bd37wwyQGN03Mvtqpenu9pdsP6sbvHfRWTLv4 - qs5w3fkH/X53ELl//cN5P4LXo7ezJ1fQ7mzzmnDnbnc+FUHntoG94bIEOnUF - DHvdlQEMVvx98Znt32ly/m5T83c/uX/3NoDOcHkB3boEOoe9w+qLuwh0G62g - 3Wuogt6nIuj92UB3+RPCXk0B3cFw9d8Cz+wi0Gty/sFa8w9bnfbLqn/UPjia - /+09aLdb8/9aPv/gk/sPbgPoHywvYFCXQH94OOx8cReBQaMVtIcNXQSGn4pg - +GcDB3udZQkMawo46B6sfibw3AIYNrd/f8PzQG/5/vPF1jsPtDc4DswvXIdf - 1nngwcPZQAWNnAcWd3uN80D30ceB+YO3+q+BZ/RU4P4D2cD8m50H1rgIrHUe - aG9wHKg6h4df1lOBBw9nExeBjc4DK/5paHG3V58HOo8+DnQGg87qfyF+ZheB - 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 - 6AMA - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:38 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/aggregated/disks - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) Accept-Encoding: - - gzip - Content-Type: - - '' + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:49 GMT Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:25:38 GMT + - Fri, 11 May 2018 14:32:49 GMT Date: - - Fri, 02 Jun 2017 19:25:38 GMT + - Fri, 11 May 2018 14:32:49 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/tJdHO1ecljFajLlJ_MYacK8j23Q"' + - '"4XxHDQbJZ_ol05RMZGiJwp5mdz0=/cT6xOonVor6XMLyH2MQNzxslc_c="' Vary: - Origin - X-Origin @@ -1899,147 +106,686 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - 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 + encoding: UTF-8 + string: | + { + "kind": "compute#zoneList", + "id": "projects/GOOGLE_PROJECT/zones", + "items": [ + { + "kind": "compute#zone", + "id": "2231", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "us-east1-b", + "description": "us-east1-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell", + "Intel Haswell" + ] + }, + { + "kind": "compute#zone", + "id": "2233", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "us-east1-c", + "description": "us-east1-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell", + "Intel Haswell" + ] + }, + { + "kind": "compute#zone", + "id": "2234", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "us-east1-d", + "description": "us-east1-d", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell", + "Intel Haswell" + ] + }, + { + "kind": "compute#zone", + "id": "2272", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "us-east4-c", + "description": "us-east4-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east4", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east4-c", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2271", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "us-east4-b", + "description": "us-east4-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east4", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east4-b", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2270", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "us-east4-a", + "description": "us-east4-a", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east4", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east4-a", + "availableCpuPlatforms": [ + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "us-central1-c", + "description": "us-central1-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell", + "Intel Haswell" + ] + }, + { + "kind": "compute#zone", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "us-central1-a", + "description": "us-central1-a", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell", + "Intel Sandy Bridge" + ] + }, + { + "kind": "compute#zone", + "id": "2004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "us-central1-f", + "description": "us-central1-f", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell", + "Intel Haswell", + "Intel Ivy Bridge" + ] + }, + { + "kind": "compute#zone", + "id": "2001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "us-central1-b", + "description": "us-central1-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell", + "Intel Haswell" + ] + }, + { + "kind": "compute#zone", + "id": "2211", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "us-west1-b", + "description": "us-west1-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-west1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2212", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "us-west1-c", + "description": "us-west1-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-west1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2210", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "us-west1-a", + "description": "us-west1-a", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-west1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2342", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "europe-west4-a", + "description": "europe-west4-a", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west4", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west4-a", + "availableCpuPlatforms": [ + "Intel Skylake" + ] + }, + { + "kind": "compute#zone", + "id": "2341", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "europe-west4-b", + "description": "europe-west4-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west4", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west4-b", + "availableCpuPlatforms": [ + "Intel Skylake" + ] + }, + { + "kind": "compute#zone", + "id": "2340", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "europe-west4-c", + "description": "europe-west4-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west4", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west4-c", + "availableCpuPlatforms": [ + "Intel Skylake" + ] + }, + { + "kind": "compute#zone", + "id": "2101", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "europe-west1-b", + "description": "europe-west1-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell", + "Intel Haswell", + "Intel Sandy Bridge" + ] + }, + { + "kind": "compute#zone", + "id": "2104", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "europe-west1-d", + "description": "europe-west1-d", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell", + "Intel Haswell" + ] + }, + { + "kind": "compute#zone", + "id": "2103", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "europe-west1-c", + "description": "europe-west1-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell", + "Intel Haswell", + "Intel Ivy Bridge" + ] + }, + { + "kind": "compute#zone", + "id": "2302", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "europe-west3-b", + "description": "europe-west3-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west3", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west3-b", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2300", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "europe-west3-c", + "description": "europe-west3-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west3", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west3-c", + "availableCpuPlatforms": [ + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2301", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "europe-west3-a", + "description": "europe-west3-a", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west3", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west3-a", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2292", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "europe-west2-c", + "description": "europe-west2-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west2-c", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2291", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "europe-west2-b", + "description": "europe-west2-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west2-b", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2290", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "europe-west2-a", + "description": "europe-west2-a", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west2-a", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2221", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "asia-east1-b", + "description": "asia-east1-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Ivy Bridge" + ] + }, + { + "kind": "compute#zone", + "id": "2220", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "asia-east1-a", + "description": "asia-east1-a", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell", + "Intel Haswell", + "Intel Ivy Bridge" + ] + }, + { + "kind": "compute#zone", + "id": "2222", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "asia-east1-c", + "description": "asia-east1-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell", + "Intel Ivy Bridge" + ] + }, + { + "kind": "compute#zone", + "id": "2261", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "asia-southeast1-b", + "description": "asia-southeast1-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-southeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-b", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2260", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "asia-southeast1-a", + "description": "asia-southeast1-a", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-southeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a", + "availableCpuPlatforms": [ + "Intel Skylake", + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2262", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "asia-southeast1-c", + "description": "asia-southeast1-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-southeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-c", + "availableCpuPlatforms": [ + "Intel Skylake" + ] + }, + { + "kind": "compute#zone", + "id": "2251", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "asia-northeast1-b", + "description": "asia-northeast1-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-northeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b", + "availableCpuPlatforms": [ + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2252", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "asia-northeast1-c", + "description": "asia-northeast1-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-northeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c", + "availableCpuPlatforms": [ + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2250", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "asia-northeast1-a", + "description": "asia-northeast1-a", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-northeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a", + "availableCpuPlatforms": [ + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2322", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "asia-south1-c", + "description": "asia-south1-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-south1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-south1-c", + "availableCpuPlatforms": [ + "Intel Skylake" + ] + }, + { + "kind": "compute#zone", + "id": "2320", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "asia-south1-b", + "description": "asia-south1-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-south1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-south1-b", + "availableCpuPlatforms": [ + "Intel Skylake" + ] + }, + { + "kind": "compute#zone", + "id": "2321", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "asia-south1-a", + "description": "asia-south1-a", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-south1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-south1-a", + "availableCpuPlatforms": [ + "Intel Skylake" + ] + }, + { + "kind": "compute#zone", + "id": "2282", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "australia-southeast1-b", + "description": "australia-southeast1-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/australia-southeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-b" + }, + { + "kind": "compute#zone", + "id": "2280", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "australia-southeast1-c", + "description": "australia-southeast1-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/australia-southeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-c" + }, + { + "kind": "compute#zone", + "id": "2281", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "australia-southeast1-a", + "description": "australia-southeast1-a", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/australia-southeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a" + }, + { + "kind": "compute#zone", + "id": "2311", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "southamerica-east1-b", + "description": "southamerica-east1-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/southamerica-east1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/southamerica-east1-b", + "availableCpuPlatforms": [ + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2312", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "southamerica-east1-c", + "description": "southamerica-east1-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/southamerica-east1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/southamerica-east1-c", + "availableCpuPlatforms": [ + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2310", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "southamerica-east1-a", + "description": "southamerica-east1-a", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/southamerica-east1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/southamerica-east1-a", + "availableCpuPlatforms": [ + "Intel Broadwell" + ] + }, + { + "kind": "compute#zone", + "id": "2330", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "northamerica-northeast1-a", + "description": "northamerica-northeast1-a", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/northamerica-northeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/northamerica-northeast1-a", + "availableCpuPlatforms": [ + "Intel Skylake" + ] + }, + { + "kind": "compute#zone", + "id": "2331", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "northamerica-northeast1-b", + "description": "northamerica-northeast1-b", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/northamerica-northeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/northamerica-northeast1-b", + "availableCpuPlatforms": [ + "Intel Skylake" + ] + }, + { + "kind": "compute#zone", + "id": "2332", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "northamerica-northeast1-c", + "description": "northamerica-northeast1-c", + "status": "UP", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/northamerica-northeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/northamerica-northeast1-c", + "availableCpuPlatforms": [ + "Intel Skylake" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:25:38 GMT + recorded_at: Fri, 11 May 2018 14:32:49 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/global/snapshots?pageToken= + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/machineTypes body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store Accept: - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:38 GMT - Date: - - Fri, 02 Jun 2017 19:25:38 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/YqUVDZMd_ELtRMC4RXTtaWUZxqY"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAALVSTUvDMBi+91eUerVL0o/1AzxsTEVQFFcRERlp99pF26Q0 - qWUT/7vJXD2o86SHXPI+n2/yatnOM+NLJ7WdQtRNp+BActrIlVDnTCrnUAPY - dty04gkKJVHBXljlqi4HlxDfJwEqK5HTCg1E+cFSUEtNvLds+1Wf/UYGbg82 - CQ7iJMDYD0jghQmJQrKbFy1QxQTPWA1S0boxcA+TUMdwSZwRLw3HKY5HSRC5 - OE4x3hE5rcFg+xXAZu0Otu4grMVUZ6I618eT2d1wK7q2gBmTz2ayUqqRKUJ9 - 349KIcoKaMPkSFdBuzrohaBfdrQRHCTqpFsAVy2tiJujpRaX6CPWN9ez7Tq8 - hCQRjnEUjoM4whGJh1aGPGcbOM0NjuDPMqKlJUzXCraV/AjjsVaIfpjPP4vf - XC2yy8Vskh0PMKgezxn/m+5f/wfa9xIVzaE6YbyEtmkZV8Y98G7reTON2/nF - kaNRb5b9YP7XvyZ0rDfrHSxXfJ0cAwAA - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:38 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/global/images - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) Accept-Encoding: - - gzip - Content-Type: - - '' + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:49 GMT Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:25:39 GMT + - Fri, 11 May 2018 14:32:50 GMT Date: - - Fri, 02 Jun 2017 19:25:39 GMT + - Fri, 11 May 2018 14:32:50 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/g3qjHlFXG7q2j9DExJZ8m-YYemo"' + - '"fIQOa6KYmdrz9S6QtMCRf5B1bWY=/TwZ1ZirngslFW9ymiyv2nz1petc="' Vary: - Origin - X-Origin @@ -2056,4399 +802,7941 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAI2NQQ6CMBAA730FqVdh0+CJN/CJUte6stDGXejB+Hex8QGe - JzPzMo2dab3aobEhLXlTPNHiI44kas8HpcryMz0wqECgnbjVbcLWub53F4ic - Js9QLamKIN9GWueveFfNMgCUUrqYUmT0maQ7XvD7we7g77x5mw+trk4cswAA - AA== - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:39 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:39 GMT - Date: - - Fri, 02 Jun 2017 19:25:39 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/lYeasUPQWQpXpC67DRBCr0xep5U"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAO2dbY8kx23H3+tTLJS33j6SVXyoAfJCtpQggIME1gFGEATB - 6rSWN74n3K3sOIa/e8jq250xrJku1XTfDlBrrWBJNzO90/VjNcki//zLF1df - /uHu7fdf7q6+fPXuzfsf72//4e7NzQ+3v777eP/lL/xP7+qfvf/w7n9uX91/ - fPHq9u39u4/Xr16/+/H7Fz+8fvfdzesX9Q0f51ff37756G/4zy+urv7ifx/5 - 9Hjt1cNnI2o2yZoKGhdGKIk/veDVh9ub+7t3b1/evbn9eH/z5n28ngDTNeI1 - 8UvkHaYdwyT+72A7gE9vfHvz5rZedf515fqP8S5EenjB97cfX324ex8fHq/7 - 9lff/sv17dub717ffn/1K3/Tv317JVff/Xj3+v7q3durx0s+vP3jux8/vLp9 - +ef39Sq/+eq3n/77h5s/fX338Q/+H+u3f3hhvGh+RdyIt/c3d29vPzy8++VX - v/ky/uivD7/Z+w+3r27ub78/+JR7//d47dff/PtvvvnVVy+/+frh4z7cvn99 - 8+r2jf/O8YLf39+//7h78eJPf/rT9MO7dz+8vr15f/dx8rv/4tMKvPgjvmhY - zhd/c+sYiOTwt4zf6MeP9ct/89XX//Hp6998ePX7uz/efnv3f7e//PP9bf1z - klJ8ReVhTb/3+xMv+Ofv6uI/3tHb17/79d3bP2z4JQ7X//XNd7ev/+nu7Q+3 - H95/uJvvXabfvvn2/S/tw7f/+o/xXetX/TkUJ8xQRI1NwJBogeJ8DU5VCYoB - HeQpmV2DLlCcIaH9NMUP4E589b8m/y35bwieL2eDEpwhg/URnDJSgpzzkxN8 - uPbrE2yQ/OMtS1H/vqpUbJlg/3GCYZdwxzoxNhEcS9FHsP8MTDByL8FETJb1 - Agjer/36BEOWhCLFHzmY/R/Imggmeom0A3cmZCqkTQQjdxP8+NbxCGZ/KHYR - jEAikgwuAuHHFVwf4ZwKoHvD5O6EuNcFgMsIiz/aYxMm3GWa3INuQZgfHZSf - izBfP751PIQFOh1hR9iokD2y+pQI7xd/fYR9D4bYfH0XDnwJSoMn7Ah7PIc7 - yLvMk0rTLizQuwvH5Z4R7kFYM6tewi68X/zVERYqIAkSCGcCtQQNfoQjJS8x - uRMRmzAJtxEs/QTLuARjOYNgB/hxS3pagmUrgpNgNsGkRbIl9f1UWgimHAST - 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 - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:39 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:39 GMT - Date: - - Fri, 02 Jun 2017 19:25:39 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/bU7dz7Ejr5Um-rJ4rYWeYtTIHpA"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAO2dXW8cR3aG7/0rCOXWbNb5qqrTQC68tjYw4IU3Fp1FEAQL - ipqVmSVFgqRsOAv/95zqGc4005yp6ta0to1uSJZgcXpYrHmfOvVx6j3/+OLk - 1d+vPrx7VZ+8ury9ufv4uPqXq5uL96vvrh4eX31pX71qvnZ3f/s/q8vHh7PL - 2/vV7cPp5fXtx3dn769v315cnzUPPKxf/bi6ebAH/uuLk5N/2H973j299uTp - vdmrBA4SYwgOPKJ3m69f3q8uHq9uP5xf3aweHi9u7tLL0UE4dXKKcg5So6uZ - KmF/6kLtnh78cHGzWn/TprUX13c/XZwCIJ46+/WzvYV3AcPm1e9WD5f3V3fp - O6WHvraHvn/z5cn675Pm4S9P0tOVq9yXJxc37zyffny4P7n7+Pb66uGn1buT - 2w8n6U2tEafbt324/Xh/uTr/9a5pyg9f/WXz7/cXv3xz9fB3+8emh55emF60 - fkVq94fHi6sPq/unp8+/+uFV+tJvTy2+u19dXjyu3rXe5dH+P732m9d//uH1 - 11+dv/6m/Uj68seHpiWvv/rmPzdtubi//Onq59Wbq/9d/eHXx1XzdYJgH0JU - feoea2x6wb+9TV99+tfrq8vVh4fV04dt//LT4+PdQ3129ssvv1Tvb2/fX68u - 7q4eKvvgzzYf/tnPcHZQSU9vetb+4Jqf4r83P8Xq+m/fXX1InXeM77dW7lmZ - TK4v3q6u/3j14f3q/u7+6sNjo138y82buz/E+zd/+tfUzqazS4XvkQMFARQQ - cs4hUkb4/hSsZf4cIAmfsPIoJcLX1k8Ezvl+wtcC4Tftmo7wN293v7q7vrhc - 3azWn9ZoirH+hV3/Ag0FzzGo936C4P3t4ubq+tf/L61Xn5HKPRo+OpXM0T4C - Z9/Fe1ESzYajRv1A58A1hVq00oCFVD5XTV8qoYDK7dvOkkrc9S/CQCoda4CA - uFBZMvKNRGUI6rzjGJSd4YWRi2IlunMLlBhqjhUqF1L5XDV9qcQCKrdvOzsq - Ebg9jmMcTqUnDLxQWTLyjURlVB8dO1RbwZHYXFmKoAznEGqMNfoqMBRA2RVN - Hyjt6aIJ7PZt5wclQqt/wQ2dwAYXI0VwC5QlA99oy0pN60pG8BoD25KiYAJr - nz81y0oD0yawrojKjmp6UYlQQGVq12ypJGn3L4TBVGqQAFPcz/nnU7lHw8df - VoIgI1KMMcSIttT3JVSCxUpXk9ROKs906mKWyo5qelFJUkQlTGiX8zNTybHV - v/bHQCq9eon2a6GyZOQbK1aqVyXCGKhZWorGPJU2tYbNFqyEyiuUUNlRTS8q - bfmapzK1a85UQqt/B8dK9qQu0kJlycg3VqwUr2ix0sKxCkIgVzCDTVuu5wYi - p/2eSn1RrOyopi+V+S3Y1K7ZUunbm/YIMphKi5S2nlmoLBn5xtrsiTaDJR+i - go9evNuuKA5SCZJipc1gkatGD3kqO6rpRaUvOa5M7ZotlXG3ExEcuMFUEjkv - ulBZNPKNNYPlQOhEgvNRnKSj0Xz2jI0XktaVjmqRSqRoBttRTS8qY3YPdtOu - OVMJrf7VwevK4H1cZrBlI99IVIp4pgikDIASUF0uVq7VH8/B1w5rcJU9XUjl - c9X0pTIzg123S+dMJe76Fz5htydC1CWJoGjkG4lK8EQMtrp0AVFjwFAUK8Gd - QzqsrFkrwFBI5XPV9KUyk0Swbtd8d3s0thWDOJhKEE9Lak/ZyDdWrGRm55S8 - TV+DD8qeS6hESFkEzDVpJVg0g+2opheVmt3tWbcL50olAbZmV+gGUxmJEXk5 - GSka+UaiksizU03rScEAxmZBrMSURZCuZITaQUWBC6ikNM9tqYZ7UWlPF6wr - rV08WypRWopJdwyGxkpEUVlye14c+V7W8Ah7sC4dT4XADgyv4CiXBtuoP+3B - hpq4Zl+JlxIqUdo/EfS7MmJPF1EJs70ycjQqmRFsUbNQ+XIfv6Th459XRvUq - MeXCRkopsZrLg23Uj3iOVDutyVeqJScjXdX0pTI/g7V2zTbjjkhbiqHhM1gN - QcEvGXdFI99osZItRgYfESREVgTMU2lxHJvzypBORhRjCZUd1fSi0tav+ViZ - 2jVbKqU9uyIbx4dRGRgDCy8z2KKRb6x1JbigIuS8DZFRhLWISvDnQDVyDVCx - lmSnd1XTi0opWVfSnGew1r/Q6t/BGXfCkf2yriwb+caKlUGJbTmp6INqAC7x - 4KAmO32d20MVY8n1yq5q+lKZn8HSjLPTyYdT2fYvD85ODx5IxS3ryqKRbyQq - Q7Qg6VnEqRqcYXdp7CCVBOm80nGyIkAtMQjpqqYXlT5UkqWSZ5ydThFa4zgP - NggJHu23W05Gika+sWawKqAOlMVJtEipvmAPlhuDEF87n3Z7fCiKlR3V9KIy - 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 - CpsbDzZXswWzUBw2nyunN5uZlLm5+rC1ezjuepiGsyn2+fAE7tJPls2XhDzC - gtMTRbTAjLbK8PZHbjOoISDdqCcDsyaoWLGUzefK6c1mJmVu07JZs6m7ddBg - l0QfxQvHZUpbOgSOxGaAKEFiIPswxBHlKws/uSUajuJrp5VF3FI2nyunN5uZ - nLm5OiYe2KQYBmdwqXguLJPa0jFwrMDpXeAIJNExhFRouMjKNF2gxHR5WFzl - CwNnZxuxH5waCxacOOcLlKmHd7MtgqHFTYOT4DQupyil++HjTWq5yQKx5T+E - 6B0X2JrSKUhi02mdrhz7omTzrnJ6s5lfcKaWzZrNcAzzNqc8DSv+ybL5kpCP - z6YDjl7EBfABFFwoslRcW7g1a87KcdH9ya5yerMZFhu3Q6JJPmM70Qw23yAv - TdWaxXigdAgciU2KGLx4QO/UEwtnk/bWxmmSNoOEa2ds+oOlwfcrpxebyWIx - HzdTy2bNZks0OLjiIqtTCUtCbekQOBKbEdC+hUGpLOTT7eaCQjZrq8VYY8Nm - KDPs6SqnN5slcRPnm7WXeni3gyiDD1ECxxjicsBZPASOFTdFhIRtKiueBFKd - 4jyb0tQoDikvCENFWBw3nyunN5v5QxT5LIco/WIQ2u8JWC9OVucviaJI5180 - P8g4DX31xW9f/B+crNI63QYBAA== - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:39 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:39 GMT - Date: - - Fri, 02 Jun 2017 19:25:39 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/p5jmBSxa_QpizC5uLeGhtDI5JYU"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAO19XW8k15Hlu38FoXnxAmZ2fN64UcA+yGvv7MPMYmH1YLBr - zAPVomVa/YVmy1rNYP77RmSRVSWKZGbdzmTlorJF9QfJKmZmnHNvRNwTEf/x - m4uvfrh5/91Xm4uv3nx49/HHz9f/cPPu6vvrf7q5/fzV7+KrN/3XPn768Lfr - N59vX313/e3N1fvLN28//Pjdq+/ffvj26u2r/gW32+/+fP3uNl7w599cXPxH - /P/Eu+f3Xty/NxIbklcmkVoQCEXuvuHNp+urzzcf3r++eXd9+/nq3cf8fgLk - S6RLoNdoG/ENYEdQLqFuAO5e+P7q3XV+77dXb374+OHT59vLuwu3y5/+en39 - 7z9f/j3fBpHs7hXfXd+++XTzMX9avvAP/bdf/OP//JdX/3Tz/sf/e2EdXfx2 - +9r/cvHTzee/Xuze++KH60/vr99efPvjzdvPFx/eX2yvEC93b3774cdPb65f - //yxv6g/ff2vd5//dPXTH25uf4hP9g/r/hvzm7bfkc/t/eerm/fXn+5f/frr - P32VX/rP++v++On6zdXn6+8O3uVz/Lu/iz/+rz/98b99/fqPf7h/u0/XH99e - vbl+d/3+c37DXz9//ni7efXqp59+6r7/8OH7t9dXH29uuzDWqzuDvfo7vhph - /Vejn/SDS/4K3eASMD7uv/7h29sPb6+3d7D7Ku1fnV/75Uv58Ink3f942z/o - P379h/9996ivPr35683fr7+5+ffr3//8+br/OhcFLQD3cPsubJHf8I/f9u9+ - D6bb67d/CRD8cKIH9tXbq2+v3/73m/ffX3/6+Olmazihf333zcff10/f/PN/ - zZvv730s44TVVcitCioTqJcBwkk840v01ygb9Y3UjpKAdizhBBjraMLJnnBX - 774rMoJ22+usK+12z5uxlRtsjn7PuyVx4xBFk3MDtbIKVJBiBhy/Ew6TQ/rd - iDdEG4SORdrIwTg1Oa7ef3fxzTf/4+JjfCEf7a/ZsvuZK1sg7N7GFhFir1hx - kWzZmXh6tiCLVTcyQaksEKQZxZbYSmDDsuHSgbVtJWmsF2ZLfKx7y94AqI1s - KUDOZZls2cNqerZ4QVbWqoiWTp76GLJQbC20Ad0QdubeRpaw1YuTZfczV7KA - ErWRBRmUC7osMEo5xNXkbHGopRZIskSIUhmEh9lSwqXJrSUcMYFOuI0taayx - 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 - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:39 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/google-containers/global/images - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:39 GMT - Date: - - Fri, 02 Jun 2017 19:25:39 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/rIYUnkNUzOSMUO7b1EJwpg-T080"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAO2dbW8cyZHn38+nIGbf+LDqUsZzZgH3wvb4jIV34YVHOONw - vheUhp7hWU+QNGN4F/vdN6K6STbJ7s7qqi6pBeY8aEZis5qd+f9lRkRGRvzn - Nxff/u367Q/f9hffvnr35v3Pn67+6frN5Y9X/3r98dO3z/yr18PX3n949/+v - Xn36+PzHd+9+fH21evXu7afL67dXH/xPXr97efn6+fBdH9ff8unqzUf/rv/7 - zcXFf/q/e94iXntx8waYcwISyzlrLsgAuvn6qw9Xl5+u3719cf3m6uOnyzfv - h5cn0FXCFeQXwL1oL6XLRKuU+5Q23/j28s3V+k03P+vqF1jh6pf43oSQNy/7 - 4erjqw/X7+Mt4tW/Hz7gxe03Xfzvf7sYftyLX/3h55dXH95efbr6ePGLf3L/ - hv4COujo2cV37179zV+79celg/+xeYeP737+8OrqxT/eDz/On379582ff7j8 - +3fXH//mfziM0s0L40XrV2z97Dff/eLXf/o2vvRfNz/8+w9Xry4/Xf2w9ZRP - /vt47Xe/+/c//e63v37xu+9uHvfh6v3ry1dXb67efooX/PTp0/uP/fPnf//7 - 37v1xF6+v/7Y+Sw938zU81/g+di5f7410G82w0wI2z9u/Gg/fxxG4Xe//u7/ - bMbh8sOrn65/ufr++j+ufvMPH934uoKaz5KWm1nygYoX/P5lfBVu5vjj1eu/ - /uv1278t+2l2yeb15cur1//r+u2PVx/ef7hejyfjn998//43+cP3//Y/42MP - n3osAWwZ2ZSNsFihkkuuEyArsIEA6Yk6lrxKViGANh9FwE5CwC8OQJdWl6/f - /3Tp/wcp2T//lS5f2kvI6P/zV9mFB8CT5uNuGjTxRELY5cKZ7TwIeSyrkxNC - iIoJMxijQIk3qxPi//ALKD2mHlJHxcYTElPzRQnBp0bIj6+uV/7mL/01Iquc - DVcGqzQNEMlKJgJ4XoDcqerkgAAWzMZqTAJkSTXX9hCOPQThBfgGkvoEXWKp - EbLe3DkJ4pF8PLv4/eufr3777u1FPODiw5UP8MerJybyPSM5SeNUtCjg7Wx9 - UY0/1sXpFW7ONCGXFCBRdqmnusJ1hb4HmDsJPeUOOY1VuOKxO4ArfP2lf3n+ - xybyR4M5UeSARKnQOYn8ThpLiFyyf2RmYiHHSW6NvAMitxVIiBxLn7Azqho6 - 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 - kEOaAQA= - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:39 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/opensuse-cloud/global/images - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:39 GMT - Date: - - Fri, 02 Jun 2017 19:25:39 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/MJBaHDgSwBYyuUWeIbhNQ0sp18s"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAO1VyW7bMBC9+ysI92pZHJJagR4SxO3FRYDYRVAURUHLE4eN - Noh03DTIv4eUpcYo6sYB0jSHHgRJnDfbmzfS7YAMr1S5HKZkmFVFvTb4RhVy - hVOlzXBkraq11U31DTOj/arGUq81ellerZf+Kq8WMvdbF73FGyy0dfk8IOTW - XnviOyzpo8dhEDMWsMTeAJIwikRnzxqURlXlXBWojSxqB2cUQg+ox5I5sJQG - qQjGIJhHo5TSzrGUBTrsz3qBe8y7dq5AWdKhlqizRtUuQw+efZxNRuThCfiY - jcj3OPwaCrJYq9yQqiQPJXSRdLVuMpzf1G3Ws6Pz7ryRmxOlr+xhS0YPdKAt - wvFSGqlKbHrv+dHZ0Jnu+iLrBjNpcLkTxdh3hz09np1OJ/NJH6zBOpcZFlga - Z740ptap7282m/GqqlY5ylrpsR2F343Dvwb/oOn6+6jcKdWVtdYtA5Ojk08d - B7LJLtU1ztQPPL4x2NpZIEI7aBqxfhSWJYd4v2gV0Z3mKrNJsRcUeaaO+rC7 - PbV9fNmmvZCFym9+0U8/acwvpqq8eil6OyLkAvN3qlxhUzdqO1zBzotZfRw3 - sw9vXfXtEA7duSCKggQSGtKYh0IcvHGUp4KnnI/DOPnzxjkyPLuW8PS1I1Pr - OyKCjeHf7t7hguaCJpwKy+jrEHTH/iOqdqiX0vV+PTy7uDkkIAQXnLEkokkE - MTwi78ij4EE8B57SOKVWeAl47ulReW93NaIA8dPl/ftfS1fMq5J3FEIUxrDn - ew30v773C+IgfQ/aNv5WmcPB3eAeZ5KFdO0JAAA= - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:39 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:40 GMT - Date: - - Fri, 02 Jun 2017 19:25:40 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/ya9OX6eeMGpf6eKdb0AMyg5Fqyg"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAO2dW28sx3GA3/UriJNXcU7XratrgDzIkZI8OEAgHcAIgiCg - jtYSo3MDSUm+wP89VT28bOIlezSc0RLohUnZFpe7w+n6pu5Vf/3s7NWPlx++ - ezWevXr78f2nn252/3D5/uL73e8vr29efe4/vaw/+3T18X92b2+uX1/9sHt3 - /vbdx5++e/39u4/fXrx7XV9+Pb32Zvf+2l/+n5+dnf3Vvx9573jt2d07F2NN - CkKFSbIaCt3+/O3V7uLm8uOHN5fvd9c3F+8/xcsxAZ8nOgd7AzImHJMMBHSe - dEzp9hc/XLzfxWvrtebzn+N3EkG5/fF3u+u3V5ef4q3jVV/vvjv714ubs68+ - 3OyuPl1dXu/Ofn/54ac/neVBzv5U8n9nPvv2p8t3N2cfP5zdf/zdm11//Onq - 7e7Nnz/VT/z6iz/c/vuri1++vLz+0f9lvRF3L4wXTa+Ie/Lh5uLyw+7q7rff - fPH1q/jR3+6u89PV7u3Fze67vXe58f8fr/3yq3//+qt/+uLNV1/evd3V7tO7 - i7e797sPN/GCH25uPl2Pr1//8ssvw/cfP37/bnfx6fJ68IN4fXsYr3+G181z - ff1/biKnsn+FcTU/Xdc//KsvvvyP2z/94urtD5c/7765/Mvud3++2dWfkxkZ - iODdGfi9iRf8y7fxU7g7uXeXb3cfrnd3MnS2wp9x95Z3f8j17urn3VX9K/7r - 9q/Yvfujn/iPm921B9F7d/Ht7t0/X374vkradFCMf3j/zafflatv/u0f47Lq - vZ1LjyFiJkjJP8RUioi16fEvpyeNWEZKA1hu0xMHvxY9/tUpPSDL6OGUUBnY - eqTnQfRWpwdIMCOJCDPnJEAKc/BBfAOheUbkoSSdgY+f/Hr43L9ZX/gI4jJ8 - AFMSKcTSJT/34rK+9snZqUkFRJWEsZQZ+Li2oap9YEQdGGbgEye/Fj5yfv9m - feGTU16MDxSnh3KP+DzI3vrqB0DZdTtkLWhs6I7QLH7kDfDIeUQbCGdYbw7p - avzEx5/4+ZX8EJectEvn50H21lc/qTC6flNl0mxuzM0IHbj85jdAI+SR3Xqz - MgefvCY+uU98wJbjYyiZuU988nbqhyAhMrFxFnMXiMocfpCDH9RR8qA4w3yL - o1+Pn/s364sfhYWht+AHKYF1ab49yN76/LhvZYoAqahzasnKDP2jwU8qo5QR - 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 - k58lvJ/V693isl599rfP/hcAcKqC1E0BAA== - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:40 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:40 GMT - Date: - - Fri, 02 Jun 2017 19:25:40 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/I8xAC4QXPwtWxLklDQoICL90KIE"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAOWYbW+bSBDH3/tTIPdtwLOzjyDdi7RxT5FStRfIVXenU0Ts - rcsFYwQ4aa7Kd79djFvU8wNNbCuSJRLFMKxnZ/6/zMx+7Tn92yQb9wOnP5pN - 83mlXyXTeKIvkrLqn5inSf0sL2b/6FFVDsp5qd1ROpuPB5N0dhOng9q8XNhW - eloa8796jvPV/KxZ29o6y5WV4siJkMCFj8r8oqJ5Pip0XCWzLEqmuqziaW7N - EQh3QbqERSAChACkx4k0twKA5sUsnmprW6a6dAlxy5y5d/ZFkIQ1NmNdjook - t+tb0/BiGJ444VU4dC6SbP7FGWaVLvIiKbUT6uJOFycOIU74gZ04X5S4Fsy5 - mSdp5cwy57tLzdrlbF6MdPSQ115cnn5s7hfx/VlS3pqbdXCWhtZoYWHjlFVx - kuli+XZ0etm3jx6XbueFHsWVHrdWqcxna3s2/HA5fHMaDc+WyxU6T+ORnuqs - sgafqyovg8Hg/v7em8xmk1THeVJ6JjmDJkGDOzLYmuvBj4EVgIjL7xzrVC/8 - s8kSLigXMQKTKXv92d6N9Xxe1kEanp790YQpLkafkzsdJv/q1w+Vrp8TggSo - 8vkyx2MTSGvx600touZumox0VuqlBp0dbHm55HLTtf9/N/7r9JORy+0+Y9sW - bRrf6PRtkk1qaS5yyvDjNMxfqyJ894v1rQ5tV/hQAeXUXAQQfMk451vgM/lE - m09CAk4DZB4om+Lt8LU08j/4DHbPgK9x6Xjho0DWwue7QJ4NHwclOSHUPzb4 - 2qLdOXyCUsl8Jahh0FxMsK3sEXCRWPYYBkx6RIpOhU8YvMme2KtdOlr26sA+ - DSqlpJKUqBdV0T7F0yR9aGmof0DYWirdOWy2vySMUhQ+kwqAA26nDWvaIKA8 - AO6ZZHWrdAT3RxseMW0SGFnTZpoBgLmERuDbtsSMEE9iElEoKYTyVzNJ4Bih - xP1ByYGh9IkZ/FBS7isC22a/b3kWAaMBkZ4P3Wa/lnZ2DOXCpaNtP21g2SYo - WUTMoO4HKJ8IpWDUqAN9fFFQHgK+tmh3Dp+vkDHFhaLMQA6Kqk7smXTSwPyb - JdRTtiB2ZG/ducsu2DvAuctPyZUBZZKvHpaOsYa0879zGStq+kbCTSttqghD - AaJDY2cbuQh4wFXApSeBbmjs0OwDm1pIQD1Dx2h0jOsaO+MSP64a8mNgn4ab - opQxqphYidvhxijcRBvunbbVKt39gaEwsAAlnCvmA5fIOxxaYH1abwBD27GB - 2jRGtfeBz6oaG2nDozut/x7YrWMURggB9wP61I6tPi0UlK3u2I6SSdxfBWQC - lFTC54KBrwQqQjt1chgRGSAJQHiSsQ2d3Erp7JjJg01R3WVMTdeiTDvns5Uy - PmAn92J0/FMDycJsMjfSe1++NUqcF60gLRLo9KsmTb+fX0bn76/DN+H59bur - i+j8t6vh1bDeuPNYb79X/2GjsI+99nuPvf8AKVB/WA4fAAA= - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:40 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:40 GMT - Date: - - Fri, 02 Jun 2017 19:25:40 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/NQZkN4EIpyoQhNQiHzr3oPDJZ2o"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAO2d33Mcx5Hn3/1XMLSvRit/V1ZH3IO91t2LL/bC4sXGxcU+ - wBTWizNFMkhKXu3G/u+X2QMCEEGguzhd9DCmaFqiJGBQ1VOfyaz88c3//M2z - b/56/eqHb+Zn37x4/eObn95f/cP1j5d/ufrj9bv33/w2/uv18t/evH39/65e - vH/37U9//unV+58uXr+7ePHy9U8/fPuXl6//fPny2+V73h2+4f3Vj+/ie/7v - b549+8/4/yM/IL/22YeXR1VwUCHCCpWrO8nNF7x4e3X5/vr1q+fXP169e3/5 - 45v8egKUC4QLqs+hzoqz0AToF1BmgJtvfHX541V+7c2KkUAu3ry9enH97uri - 53wBBPKbr333+qe3L66e//Jm+Y4//e6fb/7928u//eH63V/jXy47+fCF+UWH - r8hNvXp/ef3q6u2H737+uz99k//pvw4v8cNV/tDL91c/3HuV9/HP+bV/+O5/ - /em7f/zd8+/+8OHl3l69eXn54urHq1fv8wv+7f37N+/mb7/929/+Nv3l9eu/ - vLy6fHP9boon+e3N0/z2Z/x227vz7WNPooAC3V9zru+nd8uj+O53f/g/Nw/j - 8u2Lf7v++er76/+4+v0v76+W/87FDeNt+/Agf4inlV/wP/68vK0f3ouX1y+u - Xr27+nAsnu21sQ+v+6mtLRv6l5sNXb381z9ev/rrF3uk9w/Xy8s/X73879ev - /nL19s3b68P7KvTPP37/5vf+9vv/+d9yocuD30oLE5oJUGViEqpYdB0WDDie - A8ziM/pkhS/Am2BhHLAcBwsiFyrKt09y0PLwdO1OC8YjNycuRaTWwiZO67jQ - BZbniDPjrHVCskZcCD/8kB+u3r14e/0mf05+yz9evnr96vrF5cvfPvvfy3f/ - 9hmG8ZJnf3z+/W+fXf74g8mzm5d6tmzm2Z9/un75/tnrV89uV0aDxGNJFGAl - dh4kPnpw9ycxXx3CaEm4euheqdYVEvUC8IKCRJ9VZ4Sp1DYSFYL/HiTerGyQ - eByJHmcAatHhQD5+bncHMT74zBmtenip7gVtzYGM084XGLctnTl+w2TadtvS - sPDWicNYmQ0Oj+bQjFWHa/r4ud2dQxNVF2f1jH5A3OVsnUOL0/6cYA76mKdg - t5FD68ahDQ6P55AVsVbRweGj53Z/DhlBjVBRzApTFVznsFxAfY4wi6VfGgC3 - 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 - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:40 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:40 GMT - Date: - - Fri, 02 Jun 2017 19:25:40 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/Ok6qko_d4yHaLpKaX1U2Rcnx4SI"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAO1dXW8bx5J9968QfF/Ncdd39QD7kMS+CwPJetdWrrFYLC4U - mXG4kS1BkuObvch/3+6hSDFayTPqIakhNYESxNYMNeqpc7qquqrOP58cPP11 - 9un90/rg6fHpx7PPl9O/zD4efZh+P7u4fPosfXfWfO/s/PR/pseXF8+/pItP - v1xMjk9OP79//uHk9Kejk+fNHRfzyy+nHy/SHf/15ODgn+nfOz4+X3uw+HBB - IPCoYhGNFdDi1fePz6dHl7PTT4ezj9OLy6OPZ/lyDCCTwBOgQ8Aa0xdXFuIk - WB3C1Y2fjj5O87WLx72Ynv82PZ9gCD45x8n748lv+WMCEVzd8X56cXw+O8s/ - Ld/4bn7jwdvmxoN848EbPHhxdHl0PP10mf7q5ftZvvjgp8+zk8uD9D/z56LJ - 8iMvTj+fH08Pfz9rHuXNN++u/v786MuL2cWv6S+bFVpcmC+aX5EX69Pl0ezT - 9Hxx9+E3b57mb/2xeNqz8+nx0eX0/cqnXKY/52tff/v29fcvD18uPux8enaS - nvpjeu787V8uL88u6ufPv3z5Un04Pf1wMj06m11U6f08v3pHz3+D513e+PO2 - 5RWA1afOT/j5olmMl9+8+M+r5Tg6P/5l9tv07ex/p9/+fjltvm8BgM3VePF6 - 0oLlK/71p8ZiFu/5ZJbexsV0YXEH6/ntFp969+/X/Fb/ffVbTU9+/n726dct - r+216Z4c/TQ9+evs04fp+dn5bP6SGd99fHv2rZ+//eFf8sM2b6ArIMlcmIwp - QojRAlo7HjWZfsYjWE1YQSEes8HciscfZsfnpxenP18+O/gzNJ99BZvPDv6h - 3AGzMoERs4tXoBjLMKsKYonA44jZdvNeP2aVMYJKDJJ+UhSJ3g5amwQ4BKiF - aoSK0uZVAtpsMdsHrU6WP3YErWHxRutmgMw0grbVvNcOWibihLq0yUYAEozU - CbQUDoFqTl+xAi3babPFbB+0NsFxp128AgcqBa0poorCCNpW8147aBVC2mUp - QdeVnWMKWdtB6xPwQ5CaNe+0DmWgzRazfdCmZ6cRtFevIIZS9zhqYvmgHkfQ - tpr32kHrKThBTo4xsRkie4eQNk7ADoFraVJMrliE2Www28ds4pfRO756BRCC - Fm60wAxGiGHEbKt5b2CjpYhpIxeR7B1LoPa8MIQJcAYtah28Mi4KaRuL2Tpo - 07Mvf+xjB60GACwELRIrJuTKCNpW815/SOsWIiVXh0NEBUULLaDVSYAJxAxa - gJqlYku7l98XtHOL2TJo58+OI2ivXkHyrApBy0pAyXRsBG2rea8dtIhAgRQi - IwkHo+W521dAS03yONYca6GKMRSBNlvM9kGLk+WPHUFLWJqHMjCMprAD7vHP - Rx9nJ7+vWuTVdU8fFNTX5r9+UBt7CnlNLSAZKS8PjL8Kaoz5RAilDlwRaYH7 - PLeo7YM6PfuYp1q8Ai5OLpMrMaDsQJ5qoKC+Nv8NnBglNENysvMBQKQgrbVS - 2tRKcT4xyu51KIyJ5xa1fVDzmHy+fgUSSmNicEVBFxxB3YNQN5XoijEFP0zp - P9EoBmlNdGkuWgqcT5REa9IqxdtFoM4WtX1Qp2cfY+bFK9Bi9xtYLNmOjqDu - Q6ibcr9JowJygAC5whm97ZhYm6Imb46cuAargnkRqPVB3G8d3e/rV2BQeEzc - HE6m7SDuQPZ6oKDWzbnfCOIUiAMFFQkxRdftoM5FT01225IHXolLEaizRRWC - eo7gG3C1CYwnxIvF9dKqDonqjJHUR7j2oMqOcJ1f9uFzQtjri78mwH0+X1nS - uXkdPL28MsW/vXpz+Or1399+9/bV33/48fvDV//x48sfXzYrcvBHsy73hn96 - dnSPUTwEksBd4O8TaIqsMdQQq1hUZD230HXC38cCkevFjVBYIJLgr6gMqCP8 - e1DvjsBfTUkDOYEieEgefQf4xwniIWgNVBNVAct2/2yh64R/nMBDl5q8ePnv - b15+983hyxcPTgApRCtMrEkUDpI2hTEG70O+O0IAaJYPyJXTS08hGnugVgLI - FWl2GLxOHMBcmRcl6hoLXSMB5Kd66BTckAgAQMoIgEOuJ85525EAepDv9gng - 2a23vHv1by9ev3vbhyRA3QQtMQSTiGuXIzqAptZca7R8RJfuKSmmaay4mCSu - Rh18mV3+cvBievHr5enZwct/nE3PZ9NPx9NbSSQ9tYwkslx+LD1zZ9QYQJx5 - TCP0YfA9YhEkSAyi7qIKRGjQXr0DmPCYD/qRm46ViEUsguUH/UUsgg9/xD8c - FsmTT6yMRShydDWTXZiaMlAWwe6n/LvAImQxsiCgA3nMLXDSwiLWVLR7HuXC - +SsFLF7AInMz3hqLzJ/aRhZZLj9CYSV+CmWcJDskoy/Sh8L3iEUSczhRIgIU - S/5IbvtrZxFsTj2h6Z6VygmKWCSb8TZZJPkiD90YMCQW4dIBbhSVmfP4sDEx - 2ofC94hF1NTz2YmH6KS5xrxt2I0txjxCTbEpiOKSHvy5GW+TRfjhB8oNi0UK - Ixo2zb6rSxgjmj4UvkcskkjR1AhdInPU6B1ZpJnkQVQzVKGoVnpuxltmkTGi - uV5+Ka3RYg+oBDYe0vaj8D1iEWJCC1Ed0j8xxTTYIS8iTSEX1xBq4Iq9ZIbX - 3Iy3ySKylUKv+6CRPJBhGCODXlS4R2hUAXExT+69icfI1DZ+YJmlTBu65/ED - hB3POgCvVvL49HzaK1UJmPslvksfs8Tl/A9jcrLTqpdnKAMbKCH4wKKCxW+5 - WOBN/rS8kG1MNX+e5srt0tXXQbYXnEUAig4ckzGaamytBF9JieazFavIuJyy - yvKi96Gsx54JvW3Vy9Oh2UoIUGikrN2hrD1LwDqYc4qEo7t6RJXWKU92rbOT - K9itEoVuQc9d6NksZz32vOvtq15aTpLzJiFFxjCwg+CRszqBbC84iyARlSFA - MCXiPPKge7oXk5+llUXrw1mbDg0fe5b3tlUvTvWSuOUiBZbRz9olztqr0DCn - 68DAOe2dwZ3M2rqEVpPLXItX0Tt2Cd+Fns1y1uByykFiJBKD22FPOMJ+eLDf - syy2a85js8WEfMY8Gb8N9o1c6NXka6rRK+naHLhczistyOsJrC0ypnOUd5Ex - XX7kIxwPcGN5yyURGSgGpTvG7tGDeyMrdLF1JrhpuuvXfKHoGCITWGyG9SC2 - A3KR76CQj5VACwHZWVe4OyAfXFd4GGFCT2VhZfSQPi0MrF93SJDcnLKwqgm5 - GsSmwyBrlrZDciEtjFpDqCx0rAG9xWJKveKdlhYeEmzLd9IQWBw8DkzycECw - 3aS4MANSMEl7qRkmEIe2ZtSluDAmpNYSKuk6+OYWi9k+bAcgLjwk2BbLC0tM - dhny8OQRtq0GvnbYWmTN4SiAJ58npOiyE2zn8sICebcFuG/yvI+8cF/YDkBe - eEiwLRYY1hAtKoahqYIPCLYbFBjOI4UgAIMrk3ii0LZ2yxWB4Tw5GqoU7hbB - tkxguC9sByAwPCTYlksMp1s9cJShHtg/PGw3KDFMyqbMqOgaVfNg23bYzjWG - JTvJyBXH+5bX9NEY7gvbAWgMDwi25SrDzcRyF7eBaR8OCLYbVBk2FI4ezNEI - jDi0FfKuiAxTyLMNgDuqpN1iMFtH7RBEhoeD2h4yw3lyMQuQj5ttu4Gvf7Od - J5BZ1ZANQKStDXhFZjhgrmU17igzfIvFbBm2w5AZHhJsi4WGFWI+nqcwZqTa - DXz95z+GWe9BPNGmAKa3eA+hYZEaqULqOBv1FovZPmwHIDQ8JNgWSw1r1uoK - pLYDsL2z8Oqhaq42LjUcA7iSBWUwaQajdxBGWEoNhzpACn1LnOhSqeG+sB6A - 1PCQYF0sNqwmYoZRRlj3odQNwRocorJT0GgRFEw7ONkLseGgNSVYS0kBVanY - cF9YD0BseEiwLpYbTtu0JkfbBts5NnxYb1BumMgS75oDJ+5Ib7l12sZSbVjr - hGWyCgtRXaY23BfVA1AbHhKqi/WG1VhzlVHcgTz1QFG9Qb1hVlPBIG7unl5S - ipPbYb3UG44J2VXAkmKPUr3hBtbPdlpveEiwLlYc1ojuHAkGNo9rh2C9QcVh - 8aw0zCYYMXnhKHgPxWGEvFszdJQRv8WiSmE9UMXhIQG2WHNYY6M5KrtQVDlQ - wO6S5jCjgxkFMnIFtC77+lJzmPMEBOeOoypvsdB1EsAANIeHRADFqsMWnDka - wsBUh3eIAHZIdRjE8owE0ciUvDSI1NbGuKo67DVTBVbSfFGqOnw3ATx21eE/ - L2+56rChGyKGOObX+pDvjhBAdIlB1DWDn2OAdgdgKTqMoUasPJSUg5eKDt+J - /0cvOnxjeYtFhy0FAEo5cB/x34N7t4//Z7fesobhIyJCWXMpQFA1kusT1Q6i - w3n4SKgidRT6u8WKi0niag7CKDpcbMjlosNCHEUijl5ELwbfIxZhJ0Iil2wW - FkysPdS4Fh32WmKFRkUsUiY6XM4ij110+E/L30N0mEVA2YLeMeNoZJFuFL5H - LGIAJAGFlZWiGdo9RIdJ09d87tK9WaSXkscoOtyfRYolPViauJbCYCU9hs4i - eyiw4ZYcEY9ELGrSXs+worDBOfNZCZR0+PQS1xhFh/sbcrHKRvJFSDVoGJrQ - 3w6xyJ5pXhhjRFQEASGTCN5ZdBiz0J9AFamkKqqX3MUoOrwOFimMaIQpbTqS - LGUHpt8MlEX2TIUiRTRmknuNY7Bo0FW6fC46bLVY5V2ly28x4y2zyBjRrEF0 - WPIIcMviJXFkkR4UvkcsosLGwA4kyIiR28Z6rchCEOc6DvSSJsleihB7oTms - SCEX35ONgUEfJtwnMFpwYY+iEoSip9Cxa5KSaqEs0kLQ9ahD1yM4rKPacDfL - vbnexXlJZAgQnXhwpZY6JFUZfRBJmbtRtRcMJegxGS40Zd/RondJXSwToJhn - pUDnBOhtiNkgQz36jOfN9S7OeSLnCbE51BgZavAMtWfJVURTDEgigtGM3dvU - PJbJVahF66AVUFehu9sQs0GGevTZ1P+/3qU6woCRRA2WVDQy1GAZas8St+J5 - EHMUy7p8yJFbhUtWErdMWbgkfUIxQ200ynv0mdqb612uGgy5xsAC0ehD7QBD - 7VWU50QxQgzBWCMEktihzGWRFUZNX1Wy3UKGKswLd2WooaWBKfnf6G4x3I7z - h5MJHnH+FdvcC5ynSCkmrFMAkpzTSbFTC85Xu/gyuivHruoQ2ruFT4uK6h99 - f9/Kwhc396VQSUlRZWilsNrloEofhDf2sqdPIW9VIATOoJi807YjqpWePgpN - HX2eqts9Adyroa+MMh59N9/Kwhe38hE7SR5qQ0Nr5Rs8Z+xZB5+zcUAPEj1G - MmHs0Ae86OATq8mrkDB5b84obN8r44xH37un12UZxY17iTNySkySSzpyxv15 - eo84w4DUkVJorMHQSFv9jJV+PbYasGLpOjvghuluhzPGmpg/LXxxOQyl0EQp - m8noZxTw9B5xhmPU3FLDJIIpOOHYNkR8pTgFtQ6xilzAGaV1KWNfXl/OwFI/ - IwssUvI2cMxnFPD0HnFGrhEBd8zqEBECQ6vUpjXiX3YI4aqLxsK9Sm6vTXeL - nIGjn9G3qC1xRmQ0JhvkgeygOQP3ys+wEFwpgKgRq1hyPe9RYhZrwcqo6/Tj - G6a7Nc4Ya83W0LbLDhxFOe0sI2fcn6f3iTOQjRCIpSEPSpzYvehLGoEjwa7d - ujdMd5ucMfoZfQu/OE+608iqQ2vS3QHO2Cs/A/Khu0NITgYmzoh+j95chtxr - E7CrysoNy90aZQytHIvzMRVgRB2ziQWMN3D0PWkWb0Or8/TJH0/+D2E86Di8 - EgEA - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:40 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/aggregated/instances - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:40 GMT - Date: - - Fri, 02 Jun 2017 19:25:40 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/l3CMpsq3rUr9Xwa2mMc89OvxENg"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAO1caVPqytb+7q+guB/uB0/IPFF1qi7zPIWA4HXXrgydEMhE - BiKc2v/9dpAhKB7xvIL6brQsTffqXr3Gfljd8a+bVHpm2Go6m0orjuWGAfiX - YfuBZCsgp+se0KUAqE3DD9J/QFJjTeh6zhQogY8qxsIwkSCUAYLjJIlTqLQb - g26n8Z9GBsDy4eC/blKp9MqxgY+GPqIAO/AkE0ekTVcqHUmebdj69jlelgpi - ru3OT6HUHzTF/s9O+2c3VynFE8cUFvB9SV8TiRPggZQEf2wn5QE/NAM/pTle - ylccF6T+fYTzv1OOnQomhp9y4SSZ7aSqFMSL+u/6abMW2DwDy5jPeroNKWxd - SGa45n9MsieiX+tfP242f/7647gi5J0i9vrbrmKziFcNtl3PxkwEz+IMCb8x - muVoluVpZkeheEAKDMcWDai8QLLc9QAMZxCMRghaxMkszmcJMkNwGIKxWQzb - DbUlay3qliuihH7gWIglKRPDBkiw3GsmrQJf8Qw3ZhWP2bUHku7vTAyfNWhy - 4LmeYQcxHUXcWX03z3n91p9b/W2HbviIMRtIOgkC18+iaBRFGd1xdBNIruFn - oG7QjX7QBY7+jcsesQGa4AGHPMmHIwRGcTsJoPBB6K99riS0au2cWCruOuM5 - z7W4vQ0lu+aWHQ9GTGxvTTJ9sDMSCCLHm9XsAHialHSivS+/dKTno3YOvpvw - Q4TSTUeWTHQzpY+qQJNgoL7kVuvG/HAsQ1BYBstQSYqNF9qGgiWaJQXK6hcc - WzP0pMwJqY/InRy1nyx2042Tddqln2LnZ/wLGvqAZLuQ0iNUmi2ZqZhg1/9r - +9ePm4OGH7sAMfzZacaRggB6JVCLcERC4u0SuyWhX+uLpXZieWlrkzuFUq74 - 806oiaVEp++EnnK+GFpLhp6SJdZ5YmEooP2O1LLOkCp4hPTYvkl2nDiBBF4I - Ek4RBk4RmCAAL7pMyNX2waGrvFcfKpANyUYU0wnVrXNvJ952csgUupgBdq7x - IynHNt6g7P1Cv5Z+xVksEEibfWm/IT1zkx3NbnN6nlvxPOkNplyZVV7kVh94 - sR1yiuKEdnDcL4ElGeY6LnmewEiK4GiKQjbs/wMNCUy4N3oZfTOZ9DRZrL2k - 88Ub6OlqhyacQFUuoDt48S4Nty/1p2Oby0QsvjnedHQd6iITeRCNvGeg5dgG - ZPyPxm60oDgwMBzzH4zMWJINRbZgZKXfyiY+MLWmYX9Mmj4W1DtQclJgQyvD - hBWaSTwHWx276vhBS4r93l4DF7jcVq0i5BL5aR21FgQpihAjFO95WEMUCoAF - kYVsgu3u98ybFTfsmlIA4Z8VcxjYM9uJ7FShO0jt2re0piQDs/w3KCSx73tB - vCTPUCDMPWC94fxOnMZjBMlBbEFzJB0jNYqnTsFpHILhIkZnSTqL0RmCp17B - aQk9Ifj/K2Cm4YhlKJ5zxWSfh8noKyb7dpjsaEZ4AcJeo7qirivq+q1Q11rs - tdRfCH4d39Xfgbd2O+TfIq7kBvYccsUx/T0RF4PhPElyFEVjHEYyHMZipyAu - BiF4EaOyOJGl8AyH0a8gLj+U4WaJBMAPfhe8JQza7Vq7cgVb/whsxZ5ysMc+ - edCH8fOADv3uQI3onsUR/s+xHk5wEOsR3wbrHRIEWzmoDM6zGXqNXa94cIcH - j+SrF2jwOM0VC16x4G+FBb8SBDwGM75UwS3eRs1UVfIjYJpfAffhLE4QPM0R - LMXgNA5xH8G+CfxoaA0E50Qch6gvS9MZAqMQjDsG/KIJAKvl74L5rjW2C9XY - yG+Du66YaoupDlPBCzj1ovsDkNRlQQyOuGNTy0+LC+fPPdH2ms/O//but7s6 - 408aYOkn9+Hd9RkPipyFBIjnS6kc/MqT7ZVUwJcKUYofi7leLh8353rFSnQP - nEjqmWgosSU2B9xBpI0KdMGK8NJ0GU2tsjMw5MYEd1AmKNk5ujYX5IZ6V2Ft - 3KKn2C3VwsYqR2i5x2Z7OBXrUGRU8Hl+xi/N9gDn1ajVccdjbNHoRo3KkmQj - uTketqvzSlueFpTRSNHE+2ExX+tR09zjhAw6HLDIqiRwtSp1P3RFrBcpBOdL - vMIOuXuqhmmMPnYanYpXplatNns70biiI8waoeERpM3ldUVv9Fhn0KnpXYEX - l/n73rzFWg1BobzSdEznfJWWw+5o4TZEUrIYzstTMjXqBh1y2EK1EZ+LeAhy - ut2cLo+XgmMa+ZXXtbDBZGw17TY+LaywcFblWmZeJgaR7408tIo18+atgeWx - OemlYgvswngbxT++FUhdfwrIhHDezZz+voL3DvD3dbDuF8KczxDOl4KbX7fa - yDA0w9IkS1MMBrd0nnsTdDIIjiEYLeJUFiPi812SJF6pNj6ZBCGusPMKOz8U - djJX2PlNYSdCvAE8Dwiu0PMKPa/Q80Og56fUN48C1S+HGRMA5XdDjTcbO7z2 - zoeS/qyXX5Qzv/yivO/lF+3TFKGdWRHa24oAoQdnQyLoRMnXgC6hiUPWZ1DF - M9nep4vLhsch63Pr4oQAOaBXP08X6rl1oZ6ULJ5oL/6+4IbtedLEVqbT5b9s - ftizPaf8J+SFHe3Ft8zz5YOETG/KL/mGhADp8hGQZHwGHRzI9R4tXDYOkozP - q4UTYiFBfdloSDI+rxZOg4/PPeH//OI0TRAYxnIsxfHwgyNLE8zb10N3twTI - LM5kcSrDUfwrtwS8CTD31w6+U7V2o+kvdCt0a/vftkj7ze9kknQG5+gMwWRw - mv9967jbwHoq4h4kiNTzCu7z3q9yBzNe1ys3MNddLBKX24D3+fcvBb7nNzq0 - uFhFH1c/hiytE+vHhYhiK6NcuRmpeivXGAx7bhWvDTvdCWVOBiUzGi1MLdLU - x+U4avZX3RpeKYyL+r2hzIVbZmiqhUeRrd2JOZKaU48lqd60w+mdM5436laz - pHlWcVYMQIjNDbU3ECWRlrlcvbIoNQaqJDW7DOjOooVMVy2yHT125GIjHK1Q - ii63dce9ZYt3CsrpA6umWboIgrsm9kiOGe123ptIZmVxN5p0K8vIn46rwqhP - VF160ZwqXeZxPmMk9K4xqXWVSmPUU8t5rNKm3LBFkkW3TNTHzK2K26N7ng6Y - 3v0CY7rtRlSt9ToEKEW4QBe8BWc1OXl8J1gS0RiYj4ZWmoqFSb1Ny0vo5INB - LyjwfKFg14khLSv3nD/seCRRKeeskUannnwUgTZI/fWQjs//45B5SGcf1sb5 - j+5BZBO770P6j4c0eHQND3Tsdf/T+x0kQmJi/G9PqCyN3WLw6yH968FeWxYo - qi8h/kQiENvwA5egmbWVS8Rwel9tT5qjtjMWa4FsmSu1mlu2xXHcXTt8zufz - RZv1F/V7LECl1qJX6TSE27nA+wXXd+v6cKV7lQFfxZao6ShmcbTMGcKqwPKe - U1hVCAU0Zc7r3Sot7xaACjWsK61aZUYI/p8fKj1F7aW/not8hXORBzu2KH5q - glmIfj1o5JW6JVfQBlEKZkxPNohyTRhOHGdckBaj8WQ8D9hOq8j6oYGO3KbX - igK0zgy7bVSvtTpN3unMmQjMV7iNjWyjhps+25gyXWHiUsayWTSNmsm0yoJQ - ntU8DSu0B45mLsqApcRO36GA0yUWBROz5jK1FJfjvi2oMtXptQS8eq8OtBWw - BKqyYsqN0L5v4aGoKe6IEvVJSEHNa8FqAHIkXl+wUbXUvWtVZvWoi1eIObqI - ugtsRRg0P6bKcy2Spkxu2cOJtq8pIoB27jJuqcHb6qpXF/t3KytqsZzcW6Aj - fjzXxMcwF3JLalacViPmsQ36Tr2xKtrySJprlsuFfU4hXGgnbF7BQ7vJ3s8J - sj43ZjM3tTbBg/3Nz6iu16M+FLLtz7kOP9d9qUOuc97Ev0kdPd36jMrEnu15 - 6nTvr0pctl6/Z3tO+U+o069rOLbjBZNPK1YmuZ+rSnUg4buV8gm1yyT3Cyjl - 1CpmYsgnlDKT3C+glFPL/L4TfmL4JLmfSykHEr5bKZ8QPknuF1DKaQdiMS11 - +QPRDdvzbTTUiQeiT7QXPxDdsD2n/O+x/6cALeqcQIt6NVPerFXwsbj+6D8u - vvl18z/3FCHIIVkAAA== - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:40 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314 - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:41 GMT - Date: - - Fri, 02 Jun 2017 19:25:41 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/xGoHzY-GmeO4yWxd7jEP3upOuyI"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAK2Wa4+iSBSGv/evMO5Hx5aLqJhMMtxEbASEorXd3hjEakS5 - CQVeJv3ft8CeZHfo7o2zQ4yk6px6quqc91D1/a7R3PvRpjlsNN04THIE/0jS - eAdd1PyCbX5lIXtsn+6y+NcnKKLP0jTDVmY3hQ7y4wj4IcyQEyalN0WQTJsk - 2+QAEL0h0x2S3XuG7beJwZAgqmGRE8JqRr/wgzbK1xD70zTZvULjMIwjJcLA - yIVTiJyNgxzs//2uUV9t+MP+pbS++JEH0yT1I1Q6JfzlErN7bsE+fb06+AiG - GTb9iRsVsETCc+mcZdsHeM4qP9xbOEFerTLPYEoNsbWdZk6Dww9PaxdHIM8u - JZVNkZtxfNnNzQQi7J8nYn+mDHKDW/SKbjAQ0hF/4gVmMzHXp+C4Yy5oy14S - X7LQOEwW6TTmuYEl8wzraIV1WQ4IRaTT/bgQZYIGyW52Jsc9Z/RIGg86u4vl - LBtfuJE02MvZEgVgt1gu1V1rIsP5PiCWc7sIIZ6PF8OD4BqU4B+OhxNvmcmI - dYP4nG6d5Y4943hPRnPVOpLizgEvZ13uR0hfXzrcyerwekgevH2x9NBSMTlG - Y7NOsdnL2yJz2Q3Ik3x2nBDCxj7op/NmvcmT2F6MLvNCcwtjH/nJQpfnfY/w - 1grSQAIWhWYV5LlzgASgRMBeHrJU81oxNPq8JNlGVw1pYtkqRq2ZN3X1rc20 - urwxCzoTU7Y9zWhUKXiOYBTHmwAOobvJnHa2dah25GcooZhelReJetwtx9pW - XWjxE1DQOgwumzF31sBTaVb+3eZ5niskg1DF6Thf9jpmq4dYZ8D3xtJZgaBr - w/n0shSVSGLQdLl2OplGPJ30yXYa9BetSU/YBeZgMh3oKPD7pMa7Gisw88Mp - /trw4tgLYBtrpvH9uRKQhiX/3Bw+N9/28M0LHT+4xyp+bn7BvafET6EeVS64 - gHptgmxTBCDpIdUfMlSLwM9z87VZavMV//1113gti+WQx8j5IehKz01cEanv - lsq1NM6wxjqwrppuBn7ol3XBYNg9ce3LM8crZU7eE7hdMmsYTQJz3Xz4mUIy - PzPojxkjxZTmnKr+DKHqK2E+pihTTpbeQdQYxMcMC3BAEVacKJqSZdVp5A0s - U7dBncDUg0t9EhndnHOmqGjyyrTVGq1bi/InmQKcKUtgZeh6LdDkO6v6GDSW - OBWMV8JYEt7J+y0kRVvZlvRhuHvs7dtTNJxDTaix3lnYJ7l7g40BMFaGqS+U - Go++BWeb6mqKy+3/MHhOeJA0cWVJ5qNS318tVJ+gfsRoBaSpoXJ1ldI3Fc1b - sB4NbSVj2Jx7+u+vwSe4kgNsTZNqMv2lePE2fte+creEqypks7anXwiRZam/ - Q07/UKf1O3jlsgTJBMpIEd5Vwy0sm//oSOjXVDC4cu4af5XHVQaDF9WP9iVm - i1CSDTud4/F4fz0wncTPyiOx83a56xRk5+02mnXevyxu4IuTB8iCaeG7kHPd - OL9e/UiWpQi6Sw2Ybrf9xvu2gQUM4gSm9152HeFcR5SzVrxTEhnXGS3koDyr - SluzDEnAkZPE1QIrF6djIgk41fgksa3m3evd3/w4LGxHCwAA - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:41 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/zones - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:41 GMT - Date: - - Fri, 02 Jun 2017 19:25:41 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/-5tjLoie18WLvPPv2JwxeHbnO44"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAN2ay26jMBSG93mKKLMt4CsXP0MXs2BWo1kQ4rZME0BAGmmq - vvsYkrbQ2hijQCSkdBOfcuz/w/+xT/u6Wm+ek3S3YetNnB3yY8V//MtSfp+U - 1eZODCbNUF5kf3lclU6cvCR7qzpuuQUhxpA4dXR5Dq34oRTRv1fr9av4kT+5 - Dl2/PxchBC5fxAWPqiRLw+TAyyo65M04gK4FXAuSEHoMBQz6tudCC3gMvP9i - Gh14HRuVSWTxqKygFV2GdryMiySvH6uIEJmqYz3pza+fl68K/niJf6qqvGSO - czqd7Mcse9zzKE9KW6zGuazIeYFOjzbnR5XOZ+L3tHz/cJ+kz1fJ0hBwOosT - Sd7ujDDACTBstRi2S8awHYEBaTAQobkFaQgBI4QB33ZdrMMQazHES8YQm2Og - A0zJbzAI5akQ38awB0OaFdWT3pkkYTMC+cw+MZXOMs3RDDCqr2joIDR9biUJ - WziaEeZFdeYlQeMOQtPnYJKwhaMZYWiubtd4FkACRQgIo5hhaLsYCFoKNGV2 - HLJrJGEzovnMPjGazjLN0ehqzXc0yBuEpq/WSMIWjsa81kBwtUMxPxZZzq0T - 79ky0ph5oLRTT0fkywLNcRDt4Riipr5gRhDD1PaIL90pnZnsBuDYLR3HbgQO - rL+rBMK7QkgZbXAg7Ot3h6LWS2MWi8O8xAPt7hhsVsfSinlaFdEeWg9yGrKQ - eWC0Mk/Hors8cxRX62m1J6Io57KQhaIwL+EA6BsqEFgoCCFkCDDg2ggFWhQK - j5KFLBTFGIO62mmqPRHFYUoWslAUI+4cWFe6aVO6/brNSAPxsQEBKhS9V/Rv - 47NBmPh60VqYufy6Un2WH9cnJ/EByMZYI7/iEPttfHHymx9cEdYZ0cfb7zLq - 1TXBI/I+1ccs1C50i/bHjPKPMB9PV5KbhoeoA8Ct24SI2NCXX+MusyAa8yG3 - MR8yufxkjPl4g/pNRvKrT6bd8cXJP+LvF96gTqyR/P3mQ25jPnPIP8J84LCr - GQhBwLA4/FAhv/I+cL6rq9/+7vhs8k/cqGgtzFz+YXeAtvwB6pdf/fbfopM6 - o/xj3v4BpRc35kMY8cXHxs1/HPTIry69t2jVzSj/ufSu1n9EqgkSbVZvq/9o - W8xonSUAAA== - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:41 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/zones/asia-east1-a/machineTypes/custom-1-2048 - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBFsuM9bgjPCFPv7RrVlmYSkGviLbypLaatiPYtg84POPtZY0PQqlu0GUMI2MnraX31oAUrr0cnwbENAop_xX4N9BHiBqs0Jy1AIZb01Xbaz3wo_MVOsiFoxqG0GejcA - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:41 GMT - Date: - - Fri, 02 Jun 2017 19:25:41 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/8vPsUe0o2fjpTIciAkCC1Cz91Qo"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAHVQS07DMBDd9xRR2JK6Tiyg3RaJDUhI5QJuMk2Gxh95Jg0t - 4u7YVheVEMt539H7XhTlEW1XboqydcZPDHdGtwNa+Dh7KO8jj5lV9VqtH9aN - Uhm02kA2TcTOVLKqV+opMx1QG9AzOpsE2ywo2gCaoSuu4QXH9GXW9xMQb/1E - US0TYMC4cH7bxzuFZkh/oZnMOwRCYrD8jHRMBvU/u8MLvKSQslk91rnq4mx+ - WhPqCjSxrHQmCMbDK9pjIgdmTxsh5nle9s71I2iPtIzriOtC4iSFD+4TWibR - 4gnHiqc9VFI2jVQitZC47RA3k0bHn8mQdoMO0MUV4gcHPRIsfha/yR0PbZwB - AAA= - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:41 GMT -- request: - method: post - uri: https://accounts.google.com/o/oauth2/token - body: - encoding: ASCII-8BIT - string: grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Ajwt-bearer&assertion=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpc3MiOiIxOTkyMDM0Mjg1NDQtY29tcHV0ZUBkZXZlbG9wZXIuZ3NlcnZpY2VhY2NvdW50LmNvbSIsImF1ZCI6Imh0dHBzOi8vYWNjb3VudHMuZ29vZ2xlLmNvbS9vL29hdXRoMi90b2tlbiIsImV4cCI6MTQ5NjQzMTYxNywiaWF0IjoxNDk2NDMxNDk3LCJzY29wZSI6Imh0dHBzOi8vd3d3Lmdvb2dsZWFwaXMuY29tL2F1dGgvY29tcHV0ZSBodHRwczovL3d3dy5nb29nbGVhcGlzLmNvbS9hdXRoL2RldnN0b3JhZ2UucmVhZF93cml0ZSBodHRwczovL3d3dy5nb29nbGVhcGlzLmNvbS9hdXRoL25kZXYuY2xvdWRtYW4gaHR0cHM6Ly93d3cuZ29vZ2xlYXBpcy5jb20vYXV0aC9jbG91ZC1wbGF0Zm9ybSJ9.HNaH1rhGYDwragmGvj39I4MPSrnaIQuZs3mG7GZgp52kPkAPdhxmJRp3b_2CTcYRNRxydVAX5vnYop94Ac883H6tnOns-1vTXnsRg5sqrZ-FvWnbjWMCIGndp78uE8UaHU6YEhRjLFwXgV6dTcmnE0z5iioP5KFm6T0DcrFo-8iOwscY0nkhcGDDSQb3GywlmH72u20LR_xrXLJaWuwQeWBWkvC5DU4ZhBbE3uSUPL2y_O44RATKZfdVTvvgKI_NZl33-Y76ABcKhoaYc15D655qKUqgjgQFYCZ2Sms7CA7Kq61sd-TBBV_lWQ_IzH1MNu5vjvXoMrKoHiWfb_x2Og - headers: - User-Agent: - - Faraday v0.9.2 - Content-Type: - - application/x-www-form-urlencoded - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=utf-8 - X-Content-Type-Options: - - nosniff - Cache-Control: - - no-cache, no-store, max-age=0, must-revalidate - Pragma: - - no-cache - Expires: - - Mon, 01 Jan 1990 00:00:00 GMT - Date: - - Fri, 02 Jun 2017 19:25:57 GMT - Content-Disposition: - - attachment; filename="json.txt"; filename*=UTF-8''json.txt - Server: - - ESF - X-Xss-Protection: - - 1; mode=block - X-Frame-Options: - - SAMEORIGIN - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: |- - { - "access_token" : "ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w", - "expires_in" : 3600, - "token_type" : "Bearer" - } - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:57 GMT -- request: - method: get - uri: https://www.googleapis.com/discovery/v1/apis/compute/v1/rest - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:27:52 GMT - Date: - - Fri, 02 Jun 2017 19:22:52 GMT - Etag: - - '"YWOzh2SDasdU84ArJnpYek-OMdg/UbDB7_K3R-uvPek__mbq9Pi-1gA"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Content-Length: - - '61976' - Age: - - '185' - Cache-Control: - - public, max-age=300, must-revalidate, no-transform - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - NI2KBULUkmI1hQZJt6yBFCqz0m8FpxeUsid3pipTOQdeIW4fu5UZQmGVcyyo - QSn4Cx3FFO+TmtVQonm2TAUsol5aOE4kN1F6mwKFNTxuocUtESBRtoFcTsI5 - JxrXC1H64VohRBv6c+uUr2p3WV3Al6tuTBqnXIH94CtW0ooXngl3NetAV/h1 - i+vbkZ49ugEVBPddVTHkdKoqphWGVWC0ffVE1p5MmuiLvO2/pI6oqHbDI5lM - 3Io/tbVucjUDmZur/t6hfqagUfTumt3yUfm2lOoxNbmqiOJ4EDuofavQt9TM - dKhUUXYBk8T0PG0AF+ir29NxSj7l0wMaTW3IUla+5oda25bqwLK1ETtz6lds - Ti24nDQGskrvuHp+KTb01SFY3g/WpFjDfB0BoS188hTQZDnVuivhIVxs+56E - Y1njBBFb+5gsHULtRxBusHS8+6K4qIZMrZiWdZvsHHXoR5ZOpli8g2cWpzzR - 8voKMA/t9yeVkPx30zoH4qvV5z+gIJxGEFDyyYNzLRxPZHh0f0HWpZ45alt2 - qHswt64yPKG8jZPfStam7ViX2nNT8AQ5c7WpaWdi2pmYdiamnYnpy/9WKxY/ - diYm9WZnYtqZmHYmpg3YiPs2MaERQqts6ogI3g8e3mhhqrUM1rE8PfuWbRnm - +NswZfzBbRjrpysyJRhLV5lQpFvZea6WXUoyEfkvR4W41zCC51AG64VF0fZe - w3VwIx+gVNtmauoGMuiDl0pT4TebVkXbBdv8qbTDmwfbnAAer6bVZouGxBnm - DvtC1PMf6yRucpw8jO6Yq4WtJ2WelS7A56WepKZ/usOoEw1U9XLJhgWfMOvK - 1m6sS4QDvgqCj/O9AEv2ZK8ODm5vb/evkuRqGoWLONuHu3gg7uPBzYsD4Xid - yR8HLA3RxLGXVe/1nz6bvkJdG+6pMHhr/xne0nvaRc3mb2srjagCtYYVu1v2 - SWWLyktUDOJ37pDRoD65r7hYcC7dxRsWdjwQsKIOdoeEpszQi8s8K5h0esJS - ruP7lEUg/C3C8aeIkCLwmUIoBKkrnExSLDIOhIs4PULdGl2i2Ci9LKwezPu8 - shtJNEyDskoJRaWGkRRQRxiaD2QW4TXOVRtk+cJMEYC962TBsvcgQZ2pRJct - bcpJl5xhaUkccCuAPb0RnD52BrtyGU4zUQgd++WNdaTVSTJeUg5MJUQUy6Nb - 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 - EH374lrE338v0e8BPkIdVlaNeXwtmzprpFfhPP7NJfz1wPhUyixmL8ifyVq5 - yB0TWZc7EHC1xFSYrlihlzBwyD3VDGkhayNrgq3RpD5aZhLVKnpHTLM3m1kx - e1v5WRPlBLOVqyu5TeNZ7JNU+aY2YD8D6kk7/MBVBNHNJ11MkuXF1FEUc+sN - sZXpMUzrL0yiUFz4bHQ6PGwfdwZGpeDX7cOfOr2j89dn8N+R58WwM3jfPTSL - Cx/2z5y/ztvHx+eDztvuac8sQtwd/jQ8H52O2sfnb1/r52+6g84H+MJoKhwu - sKbx4OzYHOxdp308end++K5z+JPxmHxHzL+Fx4Hn0fnbwelZv/TF+Um7B30N - fA2k14L1jrwlhFOJ+eb4FP00hsMjz5KF94fRuo8uGf1R9/Vx59zeUN5H6MB7 - XurtylXA41HxgfH3sNfuD9+dmofun/1weHx+2BmMgNc9tHcDed3uoW83hmev - i4seoffP6Bzz2gyRX/67VbTaeFv60nPO4k3/9PS4+BSnXtbXe2Da38J6PrR/ - Nl6CsAabacILthud9dDX6AFq+e5+rUpvsCxJa9AEqwsZUYjG0upWE63bJG1g - ZSERNE08rE/U+APXBdmv5n40emHpR+KRm2SuROhXqAdqawEm+lOZTyLMsmRM - 0jrbmoSN1FM1aXsJF0eNFcKPT8H6yNSfIrkOLkjkXq6UCEV+H2uqXyYD1X3q - LSXYrpRgHqHacivJeIZWjhjejlYgaimc9Tm1zodeVWqdD9pD+MlZfxu6N7FA - cmvc7Nx1hAx1ZtgMpSFLLlkI8GQjNRQt5FqzlTo1TFTayzzJxuE0Sj2RB94m - 9cmWJ2YqVH39+WKl2hW7UHXV9f5vLyyqoL9bjWodMLAR7xY1b22hdpP55ZTG - KcRykPOxCidVKq1HFtLDt0Z6GrxNk+Wi9G4VW210vazu/sRhie2aO1J17awv - t3jzrDxed4s6V68IJfd2+3Z670cWWig9wQrIh4GHHePo4qg0ZJnhAFgTQQkV - cD08ZTbeCF1JlbSKAbjC7v/M6Kp6R2qjK3FC9xZG7eIwo7JAaEt1cQngCBfY - FevmkJzoM8Vf4s3W+VOdINN6uNOE3HtAocnjYGCSL484svZFOJ/odyVGsjU6 - qEAwXvwgv296B8V2cY4SDJ9QLpjSiRO9OnmSAjuIrLCiqhW566oALg7f0Lmk - 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 - aScEzakpZMhEIJQeJEobZ3g4SOxTJ6PVTeceHpXgqhgl7pSmqhh9FMPYjEOF - B+cILQkth4SWAch4arcZTHCSgeVFskzjKRSn+7hesRZ+EFto1UXdzVVnfaGv - 4XfhnWMhySjDsW4fS2GbcKbYrvgzYDlK59fIINNUD36FycnH9xAFMJeZSwzk - JvNKK2CCHFpdKjrVi1IyVQ2XymwgmGzw6z8R+WNz0gRplK3WSh5PfvIi7Ajp - wWiUyhM7YprPKgEOQAoNbYKVICQus/XkRvZzd5NwXpf4Nz6Zcd6hVliQxBYB - h2xqVPX5VVCd2ZZawZYVfziIGILeitdycth6rhBFcJs1yXAUT6dIb1ZPa7ok - knM1yUmQlU1qHfxJcZygq8OqY/Bz4MYmwd+r4C/IuYEpAJ5Vvjyqe5WL+Rb+ - q7LaXsoY8a3tVVXTq0H0k1ggIyPqgDUFZGks/zUg3otX2a/Gcl9BOOKVHcdT - kJy0uKbiXlTQi1LnKHWOUucodY5S5yh1jlLnKHWOUucodU7OmMxkMpP7NJOb - I29DTA1k8/aiNPDnukTY7B78fXFnyRIWitsZoDgLmaBT/6pzRM6hgXu9EMXe - CD0JPa0pUmqIHgZcvwkE0mNmh77yTaMrtulGRqjqrcXdm2BPPxO3wV1P4wnu - P5XMzLMf3WzqBoSMS5bGOBXCo1R9LP52k6CvDN5qjE4la6vQqkJQdlrc25Xr - TouH/tiRYgwn22QYiwMuk7tn2Ti9vg892b//fvff7P8fPoMj/eOf//St4iRv - JfuFBBQJqCEJKPWbuACrAyUrMzHyDj3AfgJMPNtRcDm9BAos4bFmKr5V3OMy - A2bMcs7V/PgqW6/Eo6LQBuxdfLNICL+MJxMMQCjPzjgbrWfJfIXfi0wAQlhC - WGuKW626IT0qcDE1B4wBXUqt0fc9v+/4km8VDwg2G3TE4bKuAghQN/F8IngL - 8tZmDC5z4yGH2hvWvatZ8VGTCh1CgCLwJfC1V4vAd1Pga6DEMBE4WcVAxvSE - X/l0V+x1+wnUgmeiveL1lN10nXVmmhLQEtDaq0VA2yfQKhgYFKReKKqWH6ga - z3eE1ZKeAoHVLoekSWdRhs81XlRBZR8IFQkVu6GicYqHhYvJEnzIx6NRtp77 - UCqKbbriY3lvLWKGOe8JyrVBV76UC3TFoutAJkK5HWE9ZV4Djn847lB4SHKG - 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 - k/8PYxRsEHTbDAA= - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:57 GMT -- request: - method: get - uri: https://www.googleapis.com/discovery/v1/apis/resourceviews/v1beta1/rest - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:30:38 GMT - Date: - - Fri, 02 Jun 2017 19:25:38 GMT - Etag: - - '"YWOzh2SDasdU84ArJnpYek-OMdg/HxZRDFK7f86Z7kwjlvcp4S6C4Oc"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Content-Length: - - '2797' - Server: - - GSE - Age: - - '19' - Cache-Control: - - public, max-age=300, must-revalidate, no-transform - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - tkZnU2oAAA== - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:57 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/global/networks - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:58 GMT - Date: - - Fri, 02 Jun 2017 19:25:58 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/Uyh5iaCIPH1jxAWLXiKCV_OnWkI"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAL2VwW6cMBCG7zyFRa4xtsGA4dpeKuVQtXurcvCys6yzgBE2 - i6oo715715G6atImUooQl/ln/M98MsNjhOKjGnZxjeJG9+Ns4WYAu+jpeKeM - jW+drs7qOOkHaKwhjTqpDtt5C5ixLGOctJ3eyo6EOnMpstAbV/cjQujRva/a - +Gz0bMJEVuW8SAWnOStFlldBbiaQVulho3owVvajz04py10PmIkNLeqc16xI - UlpiKmpKQ+Ege/C5O9jLubMhugPTTGr0J3rx80VEoSW01xOyB0Bh5lD05euJ - f5NDez6P0STlNHEPYUVIaKWFRf70eVcpLOgGuv2dGo5ePFg7mpqQZVmSVuu2 - Azkqkzg4JAAiJ0beDp08D+icnm7fB92hZikVFa04o4LnVfEP6gWmBU6rDXXI - szpjSSUc9fJP6sEOL8oe9GyxmbcuZNbg8XdrOVv9yU8H38/xy8Wt0V52Bt6P - sKRZxUpeZiznoqwqXvI3IXQXt6zz1FFMBGcvIrSuDK9yg66cXgNkpxlCL1dx - /52jD2hqgtbRMmQ2uIHBTrJj5DenqyY/0A7mSY+AF3f6Kn5uvNW8pFESg1zT - bdCT259rWTqY645n3EJZfTz+kpe3uvf7KkL3/rf7PxdEHD1FvwA1nrkRMAgA - AA== - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:58 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/aggregated/subnetworks - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:58 GMT - Date: - - Fri, 02 Jun 2017 19:25:58 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/WVefuwUhSchVuLiBPZTjkm7kTGM"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAANWYTW+cMBCG7/sr0PYawOPxF9yiHqpKOVV7q3ogrENoWECY - zaqK8t9r2GQhqzSlFV6JCxJ4xu9o5tF4zNPKWz/k5XYde+u02tX7Vn8y+9tS - t4eqebjOskZnSau3N7lp11fWOO9N66b6qdPWhGn+mBd+u7/VPgAisDA5+YTD - Rubo2+qdse5PK89bW6O8Kk24N36qy7ZJCnhZ8tZjx9j73n07rngfRdtp9CbH - GDlEyBkTkhMuBFUg6ckibXTSWvlNvtOmTXZ150AJCJ8In6oNkTGnMUQBo9K3 - L4ScXMtkpzvr1jr6MHx+icGu3LdtbeIwPBwOQVZVWaGTOjeBDTh8CTp8hPCD - FGZFdZsU4WsKwjOpvP6cb5tvSZn1gQAJgKqABCSkQ5hdBQ7Jr+vtttHGvLEb - djrWYJaY3yvnq4zRxd1NXs6TnHeExqCdJ6tu8kebiq/1l17sOk2P6bhLCqN7 - m+fu+cM+nq/GXOp9U9XaP9jtZgYTKVJpsaQEQVCJMKJrMpgc2RLARDoNzN7O - KZhv6umUzLGSEzQt+g6wpAgAkaSRAmRokZNqCpbSh2gDtMMSMUCiFoHlxH6J - l+iXF0DyVcUJjonJE18nswPJMELKQCBhFBXnXLB/75OCwBKAZGQakL2dUyBH - 1XSK5KDjqkc6QJILiYpwIiBilEQC8T9mSiFwEUhOPLqZ86P7VEvXPdIdjj3t - ZdW09w6opCiZ5EoqIJFSHAmBCVQC8SnbgIp5FBMaCFxGoxQTqRQXaZSjkrrv - loOYO0ZNtXfCqFD2uiORcC6pBBYR+vfD3F69mQ90AyzmJCYy4LCI6ZJNnC6Z - 8+nyvKTuGR3EXB7rbOZJk9n5UgmgHZ0qYkzxKXByn9irj4iRxaACOxssAU4+ - cdLkzifNUy0vcayzuXBc9UTOG+sf/pmunle/AdvNvaegFQAA - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:58 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/global/networks - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:58 GMT - Date: - - Fri, 02 Jun 2017 19:25:58 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/Uyh5iaCIPH1jxAWLXiKCV_OnWkI"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAL2VwW6cMBCG7zyFRa4xtsGA4dpeKuVQtXurcvCys6yzgBE2 - i6oo715715G6atImUooQl/ln/M98MsNjhOKjGnZxjeJG9+Ns4WYAu+jpeKeM - jW+drs7qOOkHaKwhjTqpDtt5C5ixLGOctJ3eyo6EOnMpstAbV/cjQujRva/a - +Gz0bMJEVuW8SAWnOStFlldBbiaQVulho3owVvajz04py10PmIkNLeqc16xI - UlpiKmpKQ+Ege/C5O9jLubMhugPTTGr0J3rx80VEoSW01xOyB0Bh5lD05euJ - f5NDez6P0STlNHEPYUVIaKWFRf70eVcpLOgGuv2dGo5ePFg7mpqQZVmSVuu2 - Azkqkzg4JAAiJ0beDp08D+icnm7fB92hZikVFa04o4LnVfEP6gWmBU6rDXXI - szpjSSUc9fJP6sEOL8oe9GyxmbcuZNbg8XdrOVv9yU8H38/xy8Wt0V52Bt6P - sKRZxUpeZiznoqwqXvI3IXQXt6zz1FFMBGcvIrSuDK9yg66cXgNkpxlCL1dx - /52jD2hqgtbRMmQ2uIHBTrJj5DenqyY/0A7mSY+AF3f6Kn5uvNW8pFESg1zT - bdCT259rWTqY645n3EJZfTz+kpe3uvf7KkL3/rf7PxdEHD1FvwA1nrkRMAgA - AA== - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:58 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/global/firewalls - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:58 GMT - Date: - - Fri, 02 Jun 2017 19:25:58 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/m804FcwWz1M4goUXpZQqzX4SBUg"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAOWWTW+bMBjH7/kUFruG4BcMhtu0HVapk6K2t6kHCibxChjZ - TtFU5bvP5iXdtDVNom6LOiEO+Pk/b+bHgx9nwLsXTeGlwMtl3W4Mf1cKxbus - qi6FNt7cCkRvbpX8ynOjg1w8iMo3mzvuI0QICoNVJe+yKpgc9eBleK2t45cZ - AI/2fj6Rk4MpDYE0JIygOIEIQQQppKM9VzwzQjY3oubaZHXr5BgiasvwEbuB - UUrDlMBFRJgPWQrh6NhkNXfagpfZpjK+TSk7X+Q2wiAouM6VaF1wp3vv7ODi - w+clKJWsQdZ869Zc8SkcN51U9065NqbVaRB0XbdYSbmqeNYKvbANBmOTwQMK - Xt65MaQOxhLHTFpuVM6vsmbFp520q3DRXwH03PPtIO174sVO1e+4Xb9YLpU0 - MpeVq7fvubdsf/DVvCovRfOqHe1YCH6z6zbrdn4cFiFlcYwjFkckpjTByQlY - UHwIFo3hqsmqfWhMGmBUVpYiB7IBZs3BGAlMhJwHLwgucDggg6LjmTH5+JlY - SyuVeYrsWPQjSgkdmAK3A1rzPdE2xWtGOwOeJ1xOYNoOuThC0HLNEkoQYdHx - TIfwAKZVsXfSXX18c4NuL7SEsORnxv4RPO69nMANhRELsf1LxoxiGtuZiI7n - JjqAG63X+7i5vv70X3GD8VlQ497KSdRYUGKYkCRkKEQIJ8kL1FhEIh8nNzBM - MbWsWGqoD+NfqXn+KPUXiDC2Zh+9pRPT7ow06/P92WzebDv7DgeUOMYGDAAA - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:58 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/aggregated/instances - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:58 GMT - Date: - - Fri, 02 Jun 2017 19:25:58 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/l3CMpsq3rUr9Xwa2mMc89OvxENg"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - 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 - vvl18z/3FCHIIVkAAA== - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:58 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/aggregated/addresses - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:59 GMT - Date: - - Fri, 02 Jun 2017 19:25:59 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/n8oR45JN0onvmxrpRRQdgl-XiWA"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAMVXTY/aMBC98yus9LCXJrHzxcdtpaKqEmKrhe2lWiGTmOAS - 7Ch2QO2K/76OExJWCyvaEjhExPbMvJnnmRfx0gHGirLIGAAj5Os0l+QTjqKM - CHEfxxmJsSTRiAppfFaWVNulGf9FQinskG5oYsp8TkyEXBd5Nq597CoKEaWn - JGuhnF86ABhxwuc4qVbA2OKMURbv10UiESmAxg+zx+HkaTSdzB7Gs+/3X4dF - rMJirSLjWBtNlyQjAKuHcaAQ80QKsOAZECFPCbgrwe4AZ0AuqQCp8rP2cSIs - sQryU68qeLW9Ir+L0DpCZap2NzjJNWSVf7m/0z/Pnep1V5gbigTKmbBzYYaE - yQwnqC63IWYPXOGeuoh9BhX9bi+Agd+Hnt+F0PWcbgBrizAjWCrkKVUMSbxO - CwcHosCEgen0p9AbIGcAu5brd03YHcDGleG1Lk65SRqaNK1PIiLCjKZF3MKg - 3t+np/YQ9CzU71o+tByviVnEyrXBt/HsaTKsD0p+ioOllKkY2PZ2u7VizuOE - 4JQKS1FgVzTYG2R/0HLHqK7xSbIYUbZqC6hpcvs9bbkgWXPH4AIZ/OGMvME3 - 5zZlCpmFRQb5nBFpSnXxVWvqpiwb9Plda5I8U91tbpU5utIoHoO+6GAere28 - Mb0FD3vYVjioazqjfiwoNgm+PgMNcCscHNR1Xhe85eB/lbrnuz0U+NBzehD1 - 3b7T6/2VUvsD6Fo+ck8odc6wEDRmJDIXCVfRWPxPsh1Yvm8hzz8i2+qmh48/ - hl9aFu6S9rZVW6McSPYJ/j4STd1QjGdyebNpadDbG5mDCs9VD8HzG5LSoLdH - ykGF54uJd/1PioZt65NS1nS8/o6m4LLje/QPRWfXeQV/A59wuAwAAA== - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:59 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:59 GMT - Date: - - Fri, 02 Jun 2017 19:25:59 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/YvQ4v37Ma9CTU2MfnxtEfKoRBWk"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAO3ab2+iMBwH8Oe+CsM9HdAWhI1nnhpjztNF8NHlYhjrHDcV - D8pMbtl7X/EvmwO0o/jgumQP1nbfwo+tn9D6UqtLT/7iXrLqkhfMlzHB30I8 - 9YNF34+IdEW7/XXnMgz+YI9Equc/+zOZxHdYhlDToK5uxkebwQTPIzr+V61e - f6HfWenJ4PouGyIEtg1eiF1C+x1/jiPizpdJPwLQkIEhQ92BpoVuLHitmAaU - gWmB3S8u3DlOxrqR78rYjQjcdtzjyAv9ZRL6aT+dhcTJJUvj223Tv2CBdzdB - f3wkZBlZqrparZRpEExn2F36kUJvSN3elPoM1ZwCrfPUw8yyu5mIR/Qdv2hP - SpJ/b2r0Nw6IeyjS+lnT5jkmoe8l1Wzdju3ttdSlmT/3CW01kQJ2bXHkTpNH - BhSwbnm9ykhq9+wf9sQZOs3+pPv9KLMB6BdDrO00nV5r0my3Rx3b7hxfLIIM - qb3BZGx3clKNG5ZrtdvlF6A/bNHA3GjEGN0b0OoOWp1JdzQc3x4XQSshdfKz - OWh2O6PjdNj4Svpnf7Usec2xM7Rphcu7wlGn2xsO6JPKjWYq7T765BrnTpNa - KCI8e+j7i6dkli+vSVtqUqtSsiat7+oMbRonaKPLyHQoMDqwGqZighxtFkFI - HovIORpUrTuH6fngk8rnIlAqvwSGkF4+QxAgnQtDJg+FkFa2Qgjo13wQYq1s - EUJsK+WpC2TJBrGVIA8KfgQxcXm2QLmzVAJQak1nUMgoVghSdaADNKsBLQAV - E4JshaIgLlboaFC1Ch2m56NQKv9OKCGUEEoIJS6uRGrNPV8JCErbGcNxGCyx - vMKZRHwyojIf0nOX/grxLtzjGX4v9sjEHpnYIxN7ZJffI3u3mp8vDyhPnjiS - PbwgoTvLgOd4QGXupKYu/Z0knV02aensskVLZz/wAQ3yAU3nI1rh1TKJVpjK - IhoSpLGln0haQ5B2OdLSTpwvGtKKRNNlcCMDzYGGBTVLp/+zUMsSLWer7UNv - lZbxOYLZB3OQZhPM6b2JEzPGf8+MUIYt/URlCp+ZUIarMsyHOmYRMaYMoAyB - Awzqi6VpiokoOdeZxOi5xOgXIkbn8a60CeZkly4+NyBOhMSJkDgRuuyJ0H7d - ZrAFlrkhl3MM9KG3Sls2hygcbOFzrrQPFrYIW4QtwpZL23I47Kmtp+IykVR7 - rb0B1/WilTg0AAA= - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:59 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/asia-east1/forwardingRules - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:59 GMT - Date: - - Fri, 02 Jun 2017 19:25:59 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/k_-jBXN4mWu4zodZelDdhxC52ho"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOMRKCMBAAe17BxFa4yWDFG6j8QYAjnsQkk7uQwvHvImNj - bb+zu8+qViv5WfW1msIjZsHTElIxaSZvr9nhQCzqvGN0QDGFO07CMNFGrpE8 - YqN11+kLJLQUPINhMg0aFg2/Kj48jG4ZyK8f200kcg9QSmltCNahicTtfgLf - G9g0/NesXtUbx+4C2+YAAAA= - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:59 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/asia-northeast1/forwardingRules - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:59 GMT - Date: - - Fri, 02 Jun 2017 19:25:59 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/dztM0kwCNwLaLlDqh5qTmY7D_3g"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAK2OMRKCMBAAe17BxFa4yWDFG6j8QYQjnMQkk7uQwvHvImNj - b7+zu8+qViv5SfW1GsMjZsHTHFIxaSJvr9nhQCzqvGN0QDGFO47CMNJGrpF8 - w0brrtMXSGgpeAbDZBofkixoWDT8+viQMbp5IL9+lItI5B6glNLaEKxDE4nb - fQe+S7Bp+EO4elVvQzF7yvAAAAA= - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:59 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/asia-southeast1/forwardingRules - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:59 GMT - Date: - - Fri, 02 Jun 2017 19:25:59 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/Wa1KbDmdPyfd2eVsS2addWUXas4"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAK2OMRKCMBAAe17BxFa4yWDFG6j8QYQjnMQkk7uQwvHvImNj - b7+zu8+qViv5SfW1GsMjZsHTHFIxaSJvr9nhQCzqvGN0QDGFO47CMNJGrpF8 - w0brrtMXSGgpeAbDZBoOWRY0LBp+fXzIGN08kF8/ykUkcg9QSmltCNahicTt - vgPfJdg0/CFcvao3c0OClPAAAAA= - http_version: - recorded_at: Fri, 02 Jun 2017 19:25:59 GMT -- request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/europe-west1/forwardingRules - body: - encoding: UTF-8 - string: '' - headers: - User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Expires: - - Fri, 02 Jun 2017 19:25:59 GMT - Date: - - Fri, 02 Jun 2017 19:25:59 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/5N5jT9Ff6aUNMA3UA-DCtH05B0M"' - Vary: - - Origin - - X-Origin - Content-Type: - - application/json; charset=UTF-8 - Content-Encoding: - - gzip - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - Server: - - GSE - Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" - Transfer-Encoding: - - chunked - body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOMRKCMBAAe17BxFa4yWDFG6j8gcIRT2Iuk7uQwvHvImNj - bb+zu8+qNguFyfS1GfkRs+Jh5lQuaaLgztnjQKLmuGG0QzHxHUcVGGkl32i+ - YmNt19kTJHTEQQBz4ohNQVELvzLZTYJ+HigsH99NNUoPUEppHbPzeIkk7fYC - 3x9YLfxbrV7VG1odSiHqAAAA + encoding: UTF-8 + string: | + { + "kind": "compute#machineTypeAggregatedList", + "id": "projects/GOOGLE_PROJECT/aggregated/machineTypes", + "items": { + "zones/us-central1-a": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "9096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-megamem-96", + "description": "96 vCPUs, 1.4 TB RAM", + "guestCpus": 96, + "memoryMb": 1468006, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-megamem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-96", + "isSharedCpu": false + } + ] + }, + "zones/us-central1-b": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "9096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-megamem-96", + "description": "96 vCPUs, 1.4 TB RAM", + "guestCpus": 96, + "memoryMb": 1468006, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-megamem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-standard-96", + "isSharedCpu": false + } + ] + }, + "zones/us-central1-c": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-standard-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "10160", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-ultramem-160", + "description": "160 vCPUs, 3844 GB RAM", + "guestCpus": 160, + "memoryMb": 3936256, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-ultramem-160", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "10040", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-ultramem-40", + "description": "40 vCPUs, 961 GB RAM", + "guestCpus": 40, + "memoryMb": 984064, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-ultramem-40", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "10080", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-ultramem-80", + "description": "80 vCPUs, 1922 GB RAM", + "guestCpus": 80, + "memoryMb": 1968128, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-ultramem-80", + "isSharedCpu": false + } + ] + }, + "zones/us-central1-f": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-central1-f", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-f/machineTypes/n1-standard-96", + "isSharedCpu": false + } + ] + }, + "zones/europe-west1-b": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "9096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-megamem-96", + "description": "96 vCPUs, 1.4 TB RAM", + "guestCpus": 96, + "memoryMb": 1468006, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-megamem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-b/machineTypes/n1-standard-96", + "isSharedCpu": false + } + ] + }, + "zones/europe-west1-c": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-c/machineTypes/n1-standard-96", + "isSharedCpu": false + } + ] + }, + "zones/europe-west1-d": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "9096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-megamem-96", + "description": "96 vCPUs, 1.4 TB RAM", + "guestCpus": 96, + "memoryMb": 1468006, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-megamem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-standard-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "10160", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-ultramem-160", + "description": "160 vCPUs, 3844 GB RAM", + "guestCpus": 160, + "memoryMb": 3936256, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-ultramem-160", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "10040", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-ultramem-40", + "description": "40 vCPUs, 961 GB RAM", + "guestCpus": 40, + "memoryMb": 984064, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-ultramem-40", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "10080", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-ultramem-80", + "description": "80 vCPUs, 1922 GB RAM", + "guestCpus": 80, + "memoryMb": 1968128, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "europe-west1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/europe-west1-d/machineTypes/n1-ultramem-80", + "isSharedCpu": false + } + ] + }, + "zones/us-west1-a": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "9096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-megamem-96", + "description": "96 vCPUs, 1.4 TB RAM", + "guestCpus": 96, + "memoryMb": 1468006, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-megamem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-a/machineTypes/n1-standard-96", + "isSharedCpu": false + } + ] + }, + "zones/us-west1-b": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "9096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-megamem-96", + "description": "96 vCPUs, 1.4 TB RAM", + "guestCpus": 96, + "memoryMb": 1468006, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-megamem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-b/machineTypes/n1-standard-96", + "isSharedCpu": false + } + ] + }, + "zones/us-west1-c": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-west1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-west1-c/machineTypes/n1-standard-96", + "isSharedCpu": false + } + ] + }, + "zones/asia-east1-a": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "9096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-megamem-96", + "description": "96 vCPUs, 1.4 TB RAM", + "guestCpus": 96, + "memoryMb": 1468006, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-megamem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-standard-96", + "isSharedCpu": false + } + ] + }, + "zones/asia-east1-b": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "9096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-megamem-96", + "description": "96 vCPUs, 1.4 TB RAM", + "guestCpus": 96, + "memoryMb": 1468006, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-megamem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-b/machineTypes/n1-standard-96", + "isSharedCpu": false + } + ] + }, + "zones/asia-east1-c": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-c/machineTypes/n1-standard-96", + "isSharedCpu": false + } + ] + }, + "zones/us-east1-b": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "9096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-megamem-96", + "description": "96 vCPUs, 1.4 TB RAM", + "guestCpus": 96, + "memoryMb": 1468006, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-megamem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "10160", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-ultramem-160", + "description": "160 vCPUs, 3844 GB RAM", + "guestCpus": 160, + "memoryMb": 3936256, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-ultramem-160", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "10040", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-ultramem-40", + "description": "40 vCPUs, 961 GB RAM", + "guestCpus": 40, + "memoryMb": 984064, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-ultramem-40", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "10080", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-ultramem-80", + "description": "80 vCPUs, 1922 GB RAM", + "guestCpus": 80, + "memoryMb": 1968128, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-ultramem-80", + "isSharedCpu": false + } + ] + }, + "zones/us-east1-c": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "9096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-megamem-96", + "description": "96 vCPUs, 1.4 TB RAM", + "guestCpus": 96, + "memoryMb": 1468006, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-megamem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-standard-96", + "isSharedCpu": false + } + ] + }, + "zones/us-east1-d": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "us-east1-d", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-d/machineTypes/n1-standard-96", + "isSharedCpu": false + } + ] + }, + "zones/asia-northeast1-a": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-a/machineTypes/n1-standard-8", + "isSharedCpu": false + } + ] + }, + "zones/asia-northeast1-b": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-b/machineTypes/n1-standard-8", + "isSharedCpu": false + } + ] + }, + "zones/asia-northeast1-c": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-northeast1-c", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-northeast1-c/machineTypes/n1-standard-8", + "isSharedCpu": false + } + ] + }, + "zones/asia-southeast1-a": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-highmem-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-2", + "description": "2 vCPUs, 13 GB RAM", + "guestCpus": 2, + "memoryMb": 13312, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-highmem-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-32", + "description": "32 vCPUs, 208 GB RAM", + "guestCpus": 32, + "memoryMb": 212992, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-highmem-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-4", + "description": "4 vCPUs, 26 GB RAM", + "guestCpus": 4, + "memoryMb": 26624, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-highmem-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-64", + "description": "64 vCPUs, 416 GB RAM", + "guestCpus": 64, + "memoryMb": 425984, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-highmem-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-8", + "description": "8 vCPUs, 52 GB RAM", + "guestCpus": 8, + "memoryMb": 53248, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-highmem-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-96", + "description": "96 vCPUs, 624 GB RAM", + "guestCpus": 96, + "memoryMb": 638976, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-highmem-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3001", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-1", + "description": "1 vCPU, 3.75 GB RAM", + "guestCpus": 1, + "memoryMb": 3840, + "imageSpaceGb": 10, + "maximumPersistentDisks": 32, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-standard-1", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-16", + "description": "16 vCPUs, 60 GB RAM", + "guestCpus": 16, + "memoryMb": 61440, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-standard-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-2", + "description": "2 vCPUs, 7.5 GB RAM", + "guestCpus": 2, + "memoryMb": 7680, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-standard-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-32", + "description": "32 vCPUs, 120 GB RAM", + "guestCpus": 32, + "memoryMb": 122880, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-standard-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-4", + "description": "4 vCPUs, 15 GB RAM", + "guestCpus": 4, + "memoryMb": 15360, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-standard-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-64", + "description": "64 vCPUs, 240 GB RAM", + "guestCpus": 64, + "memoryMb": 245760, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-standard-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-8", + "description": "8 vCPUs, 30 GB RAM", + "guestCpus": 8, + "memoryMb": 30720, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-standard-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "3096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-standard-96", + "description": "96 vCPUs, 360 GB RAM", + "guestCpus": 96, + "memoryMb": 368640, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-a/machineTypes/n1-standard-96", + "isSharedCpu": false + } + ] + }, + "zones/asia-southeast1-b": { + "machineTypes": [ + { + "kind": "compute#machineType", + "id": "1000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "f1-micro", + "description": "1 vCPU (shared physical core) and 0.6 GB RAM", + "guestCpus": 1, + "memoryMb": 614, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-southeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-b/machineTypes/f1-micro", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "2000", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "g1-small", + "description": "1 vCPU (shared physical core) and 1.7 GB RAM", + "guestCpus": 1, + "memoryMb": 1740, + "imageSpaceGb": 0, + "maximumPersistentDisks": 16, + "maximumPersistentDisksSizeGb": "3072", + "zone": "asia-southeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-b/machineTypes/g1-small", + "isSharedCpu": true + }, + { + "kind": "compute#machineType", + "id": "4016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-16", + "description": "16 vCPUs, 14.4 GB RAM", + "guestCpus": 16, + "memoryMb": 14746, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-b/machineTypes/n1-highcpu-16", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4002", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-2", + "description": "2 vCPUs, 1.8 GB RAM", + "guestCpus": 2, + "memoryMb": 1843, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-b/machineTypes/n1-highcpu-2", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4032", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-32", + "description": "32 vCPUs, 28.8 GB RAM", + "guestCpus": 32, + "memoryMb": 29491, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-b/machineTypes/n1-highcpu-32", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4004", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-4", + "description": "4 vCPUs, 3.6 GB RAM", + "guestCpus": 4, + "memoryMb": 3686, + "imageSpaceGb": 10, + "maximumPersistentDisks": 64, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-b/machineTypes/n1-highcpu-4", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4064", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-64", + "description": "64 vCPUs, 57.6 GB RAM", + "guestCpus": 64, + "memoryMb": 58982, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-b/machineTypes/n1-highcpu-64", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4008", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-8", + "description": "8 vCPUs, 7.2 GB RAM", + "guestCpus": 8, + "memoryMb": 7373, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-b/machineTypes/n1-highcpu-8", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "4096", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highcpu-96", + "description": "96 vCPUs, 86 GB RAM", + "guestCpus": 96, + "memoryMb": 88474, + "imageSpaceGb": 0, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-b/machineTypes/n1-highcpu-96", + "isSharedCpu": false + }, + { + "kind": "compute#machineType", + "id": "5016", + "creationTimestamp": "1969-12-31T16:00:00.000-08:00", + "name": "n1-highmem-16", + "description": "16 vCPUs, 104 GB RAM", + "guestCpus": 16, + "memoryMb": 106496, + "imageSpaceGb": 10, + "maximumPersistentDisks": 128, + "maximumPersistentDisksSizeGb": "65536", + "zone": "asia-southeast1-b", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-southeast1-b/machineTypes/n1-highmem-16", + "isSharedCpu": false + } + ] + }, + "zones/asia-southeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-southeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-southeast1-c" + } + ] + } + }, + "zones/us-east4-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east4-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east4-a" + } + ] + } + }, + "zones/us-east4-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east4-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east4-b" + } + ] + } + }, + "zones/us-east4-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east4-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east4-c" + } + ] + } + }, + "zones/australia-southeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/australia-southeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/australia-southeast1-c" + } + ] + } + }, + "zones/australia-southeast1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/australia-southeast1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/australia-southeast1-a" + } + ] + } + }, + "zones/australia-southeast1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/australia-southeast1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/australia-southeast1-b" + } + ] + } + }, + "zones/europe-west2-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west2-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west2-a" + } + ] + } + }, + "zones/europe-west2-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west2-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west2-b" + } + ] + } + }, + "zones/europe-west2-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west2-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west2-c" + } + ] + } + }, + "zones/europe-west3-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west3-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west3-c" + } + ] + } + }, + "zones/europe-west3-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west3-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west3-a" + } + ] + } + }, + "zones/europe-west3-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west3-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west3-b" + } + ] + } + }, + "zones/southamerica-east1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/southamerica-east1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/southamerica-east1-a" + } + ] + } + }, + "zones/southamerica-east1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/southamerica-east1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/southamerica-east1-b" + } + ] + } + }, + "zones/southamerica-east1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/southamerica-east1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/southamerica-east1-c" + } + ] + } + }, + "zones/asia-south1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-south1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-south1-b" + } + ] + } + }, + "zones/asia-south1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-south1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-south1-a" + } + ] + } + }, + "zones/asia-south1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-south1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-south1-c" + } + ] + } + }, + "zones/northamerica-northeast1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/northamerica-northeast1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/northamerica-northeast1-a" + } + ] + } + }, + "zones/northamerica-northeast1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/northamerica-northeast1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/northamerica-northeast1-b" + } + ] + } + }, + "zones/northamerica-northeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/northamerica-northeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/northamerica-northeast1-c" + } + ] + } + }, + "zones/europe-west4-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west4-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west4-c" + } + ] + } + }, + "zones/europe-west4-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west4-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west4-b" + } + ] + } + }, + "zones/europe-west4-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west4-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west4-a" + } + ] + } + } + }, + "nextPageToken": "CgsIAxHVCAAAAAAAABIPCg1uMS1oaWdobWVtLTE2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/machineTypes" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:00 GMT + recorded_at: Fri, 11 May 2018 14:32:50 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-central1/forwardingRules + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/disks body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:50 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:00 GMT + - Fri, 11 May 2018 14:32:50 GMT Date: - - Fri, 02 Jun 2017 19:26:00 GMT + - Fri, 11 May 2018 14:32:50 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/yM158alTCZrGgPPwTgK2unWL7eA"' + - '"lX-YadwoCrmClNvDA3WYhKM6jdk=/84SzuYlLccQgDp9LfXseIcScBhU="' Vary: - Origin - X-Origin @@ -6465,57 +8753,1983 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAL1Su07DMBTd8xVRWHFs59lmK6gDUoWikgEJMbiOm5o6cWQ7 - zVDx78RNSgUDiKEM9nDv8Xlc36PjenvelF7melTWbWfYzVaqnqiSN9W6E2zF - tfFuBxg/gVol3xg1GlJ+4AKYbsMAxmGII6hYxWWjYacBZY1RRGD4lUuPRIbV - euB6cVz3OJzfHNhH7lkfp+ksiYM5msVxGgQBQvHUp4oRMxgoeM20IXVr4QHC - CUBzECQFDjOEsxD5CY4ASjOEpocNqZnFbqUEYgMu4kBd1EumqeKtFbDYqTpG - toWdMa3OIOz73q+krAQjLdf+kAhOqeABw79NbxJ5yBdlqZjWp/wo8nEc+ziN - /Dj+RORKGkmlsJDiPp/qrVRmTZrqFC/BCCFg7zOxIapi5lru4UifSyk0HGc7 - 6Womtive7K+m/G3r4I8/KyQp74ggDR0aT3THxm1YPhfL9eNi5Q2gd8d9tZv7 - 38Y95935AG+PSF+iAwAA + encoding: UTF-8 + string: | + { + "kind": "compute#diskAggregatedList", + "id": "projects/GOOGLE_PROJECT/aggregated/disks", + "items": { + "zones/us-central1-a": { + "disks": [ + { + "kind": "compute#disk", + "id": "5884055212948558790", + "creationTimestamp": "2016-11-25T04:23:05.658-08:00", + "name": "disk-1", + "sizeGb": "20", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/disk-1", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/diskTypes/pd-standard", + "lastAttachTimestamp": "2016-11-25T04:56:57.649-08:00", + "lastDetachTimestamp": "2017-02-14T13:08:29.792-08:00", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "1368210998906894667", + "creationTimestamp": "2017-05-05T16:15:49.421-07:00", + "name": "instance-group-1-gvej", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/instance-group-1-gvej", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161020", + "sourceImageId": "2896785053468388774", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/diskTypes/pd-standard", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "lastAttachTimestamp": "2017-05-05T16:15:49.472-07:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/instance-group-1-gvej" + ], + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#disk", + "id": "7462230023779432779", + "creationTimestamp": "2017-05-05T16:15:49.019-07:00", + "name": "instance-group-1-veey", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/instance-group-1-veey", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161020", + "sourceImageId": "2896785053468388774", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/diskTypes/pd-standard", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "lastAttachTimestamp": "2017-05-05T16:15:49.070-07:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/instance-group-1-veey" + ], + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#disk", + "id": "6576777856592407651", + "creationTimestamp": "2018-02-03T07:17:32.420-08:00", + "name": "instance-group-2-kwrw", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/instance-group-2-kwrw", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161020", + "sourceImageId": "2896785053468388774", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/diskTypes/pd-standard", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "lastAttachTimestamp": "2018-02-03T07:17:32.426-08:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/instance-group-2-kwrw" + ], + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#disk", + "id": "7187386274655247873", + "creationTimestamp": "2018-05-11T06:55:59.146-07:00", + "name": "preemptible", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/preemptible", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180510", + "sourceImageId": "7713210638144157385", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/diskTypes/pd-standard", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "lastAttachTimestamp": "2018-05-11T06:55:59.148-07:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/preemptible" + ], + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#disk", + "id": "3533596603125379569", + "creationTimestamp": "2018-02-08T19:01:51.197-08:00", + "name": "test-prov-b1vw", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/test-prov-b1vw", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "8400370504607774965", + "creationTimestamp": "2018-02-08T18:23:23.310-08:00", + "name": "test-prov-p6uo", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/test-prov-p6uo", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "4181582343453972754", + "creationTimestamp": "2017-12-14T17:40:14.200-08:00", + "name": "test-prov-uzo5", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/test-prov-uzo5", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + } + ] + }, + "zones/us-central1-b": { + "disks": [ + { + "kind": "compute#disk", + "id": "4515706846053953003", + "creationTimestamp": "2018-02-03T07:19:32.357-08:00", + "name": "instance-group-2-797c", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/disks/instance-group-2-797c", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161020", + "sourceImageId": "2896785053468388774", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/diskTypes/pd-standard", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "lastAttachTimestamp": "2018-02-03T07:19:32.363-08:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/instances/instance-group-2-797c" + ], + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + } + ] + }, + "zones/us-central1-c": { + "disks": [ + { + "kind": "compute#disk", + "id": "4264059047167979861", + "creationTimestamp": "2017-05-08T22:12:26.882-07:00", + "name": "hsaito-cfme-test-extdisk", + "sizeGb": "100", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/disks/hsaito-cfme-test-extdisk", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/diskTypes/pd-standard", + "lastAttachTimestamp": "2017-05-09T04:11:07.259-07:00", + "lastDetachTimestamp": "2017-06-04T02:52:55.385-07:00", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "8752280849029295614", + "creationTimestamp": "2018-02-03T07:19:45.473-08:00", + "name": "instance-group-2-q1kv", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/disks/instance-group-2-q1kv", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161020", + "sourceImageId": "2896785053468388774", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/diskTypes/pd-standard", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "lastAttachTimestamp": "2018-02-03T07:19:45.479-08:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/instances/instance-group-2-q1kv" + ], + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + } + ] + }, + "zones/us-central1-f": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-central1-f' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-central1-f" + } + ] + } + }, + "zones/europe-west1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west1-b" + } + ] + } + }, + "zones/europe-west1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west1-c" + } + ] + } + }, + "zones/europe-west1-d": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west1-d' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west1-d" + } + ] + } + }, + "zones/us-west1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-west1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-west1-a" + } + ] + } + }, + "zones/us-west1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-west1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-west1-b" + } + ] + } + }, + "zones/us-west1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-west1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-west1-c" + } + ] + } + }, + "zones/asia-east1-a": { + "disks": [ + { + "kind": "compute#disk", + "id": "7388191401831442096", + "creationTimestamp": "2017-01-06T05:15:11.468-08:00", + "name": "load-balancer-1", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/load-balancer-1", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161215", + "sourceImageId": "7187216073735715927", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "lastAttachTimestamp": "2017-01-06T05:15:11.505-08:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-1" + ], + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#disk", + "id": "7842737175290972023", + "creationTimestamp": "2017-06-29T19:38:16.873-07:00", + "name": "test-prov-01ys", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-01ys", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "4775048451876343646", + "creationTimestamp": "2017-10-27T19:55:46.026-07:00", + "name": "test-prov-0evn", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-0evn", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "4343348369696579646", + "creationTimestamp": "2017-05-23T18:16:01.633-07:00", + "name": "test-prov-1m4u", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-1m4u", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "lastAttachTimestamp": "2017-05-23T18:16:04.861-07:00", + "lastDetachTimestamp": "2017-05-23T18:16:26.951-07:00", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "8184912203241091526", + "creationTimestamp": "2017-07-04T19:30:01.592-07:00", + "name": "test-prov-2gxf", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-2gxf", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "7158750022641536442", + "creationTimestamp": "2017-10-27T20:02:46.203-07:00", + "name": "test-prov-3lah", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-3lah", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "2488511213283987404", + "creationTimestamp": "2017-10-27T19:53:24.071-07:00", + "name": "test-prov-3vgj", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-3vgj", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "7986593363943903501", + "creationTimestamp": "2017-10-27T19:48:02.713-07:00", + "name": "test-prov-3wiq", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-3wiq", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "7455509052791868793", + "creationTimestamp": "2017-10-27T20:03:50.629-07:00", + "name": "test-prov-410z", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-410z", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "8045352824405265739", + "creationTimestamp": "2017-10-25T18:00:21.239-07:00", + "name": "test-prov-58a1", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-58a1", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "8253291398297852595", + "creationTimestamp": "2017-10-31T18:33:17.134-07:00", + "name": "test-prov-5cpu", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-5cpu", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "1781901810766481169", + "creationTimestamp": "2017-10-25T18:27:26.840-07:00", + "name": "test-prov-5zq4", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-5zq4", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "4014673042429501795", + "creationTimestamp": "2017-10-28T21:56:45.218-07:00", + "name": "test-prov-9fdq", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-9fdq", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "247220527441699131", + "creationTimestamp": "2017-10-28T21:57:56.874-07:00", + "name": "test-prov-9wqv", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-9wqv", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "165251158202184660", + "creationTimestamp": "2017-10-25T19:49:31.423-07:00", + "name": "test-prov-afyd", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-afyd", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "7070192671785637730", + "creationTimestamp": "2017-10-30T20:10:06.305-07:00", + "name": "test-prov-anar", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-anar", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "3400575216843753319", + "creationTimestamp": "2017-06-29T19:38:00.398-07:00", + "name": "test-prov-b2nt", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-b2nt", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "565079804204610358", + "creationTimestamp": "2017-10-25T19:52:09.652-07:00", + "name": "test-prov-csbo", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-csbo", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "1666925733820657284", + "creationTimestamp": "2017-11-02T19:11:55.888-07:00", + "name": "test-prov-cvuk", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-cvuk", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "2276691672582268933", + "creationTimestamp": "2017-10-29T20:05:14.660-07:00", + "name": "test-prov-cy3v", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-cy3v", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "281778800676092938", + "creationTimestamp": "2017-05-23T20:49:57.639-07:00", + "name": "test-prov-d0z1", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-d0z1", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "lastAttachTimestamp": "2017-05-23T20:50:01.201-07:00", + "lastDetachTimestamp": "2017-05-23T20:50:28.086-07:00", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "6461355133155211731", + "creationTimestamp": "2017-10-25T19:23:57.296-07:00", + "name": "test-prov-dizp", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-dizp", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "8622539095469087032", + "creationTimestamp": "2017-10-30T20:02:47.873-07:00", + "name": "test-prov-enec", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-enec", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "2672737315685055143", + "creationTimestamp": "2017-11-02T04:40:57.016-07:00", + "name": "test-prov-ezka", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-ezka", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "9030567010133495933", + "creationTimestamp": "2017-10-27T19:42:27.156-07:00", + "name": "test-prov-ffph", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-ffph", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "2313895933430788315", + "creationTimestamp": "2017-10-25T19:53:41.363-07:00", + "name": "test-prov-fgzd", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-fgzd", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "1004424511562220724", + "creationTimestamp": "2017-10-25T18:28:59.753-07:00", + "name": "test-prov-fluu", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-fluu", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "2346884469139569322", + "creationTimestamp": "2017-07-04T18:43:33.687-07:00", + "name": "test-prov-ftga", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-ftga", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "3484881082641962551", + "creationTimestamp": "2017-10-30T20:07:04.843-07:00", + "name": "test-prov-glbr", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-glbr", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "7310809220882521536", + "creationTimestamp": "2017-10-30T19:42:55.564-07:00", + "name": "test-prov-gmg9", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-gmg9", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "2616301685943955824", + "creationTimestamp": "2017-07-04T19:31:59.810-07:00", + "name": "test-prov-gphx", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-gphx", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "8439200552354207480", + "creationTimestamp": "2017-10-30T20:03:51.611-07:00", + "name": "test-prov-hcwl", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-hcwl", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "3303610123898620932", + "creationTimestamp": "2017-10-25T17:57:15.394-07:00", + "name": "test-prov-j8qk", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-j8qk", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "6750140006764296802", + "creationTimestamp": "2017-11-02T04:42:05.682-07:00", + "name": "test-prov-jbdi", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-jbdi", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "3188273647657073209", + "creationTimestamp": "2017-11-02T04:43:18.534-07:00", + "name": "test-prov-jvpx", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-jvpx", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "8865167360012712562", + "creationTimestamp": "2017-07-04T18:45:01.522-07:00", + "name": "test-prov-jw1c", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-jw1c", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "6589688777434356018", + "creationTimestamp": "2017-10-30T20:02:54.170-07:00", + "name": "test-prov-kshq", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-kshq", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "2310082689666680661", + "creationTimestamp": "2017-10-25T18:26:18.881-07:00", + "name": "test-prov-kxpm", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-kxpm", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "7453592011319053328", + "creationTimestamp": "2017-10-25T17:57:36.159-07:00", + "name": "test-prov-lhix", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-lhix", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "4503643236444350912", + "creationTimestamp": "2017-10-29T20:06:24.502-07:00", + "name": "test-prov-ngsh", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-ngsh", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "4276926584496643833", + "creationTimestamp": "2017-10-28T21:59:02.657-07:00", + "name": "test-prov-nm57", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-nm57", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "4087892459480455757", + "creationTimestamp": "2017-10-31T18:34:26.929-07:00", + "name": "test-prov-ov5b", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-ov5b", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "8544816748805380450", + "creationTimestamp": "2017-10-30T20:01:33.846-07:00", + "name": "test-prov-owgk", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-owgk", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "3648029525663968973", + "creationTimestamp": "2017-11-02T19:10:42.935-07:00", + "name": "test-prov-pqn5", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-pqn5", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "4737957384891027691", + "creationTimestamp": "2017-10-27T19:40:04.886-07:00", + "name": "test-prov-qh6l", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-qh6l", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "2373814008547303928", + "creationTimestamp": "2017-04-04T01:53:43.463-07:00", + "name": "test-prov-qirn", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-qirn", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "lastAttachTimestamp": "2017-04-04T01:54:09.613-07:00", + "lastDetachTimestamp": "2017-04-04T01:54:38.251-07:00", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "2318959897441098152", + "creationTimestamp": "2017-10-30T20:00:23.656-07:00", + "name": "test-prov-qonq", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-qonq", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "708411452806811809", + "creationTimestamp": "2017-10-27T19:41:19.091-07:00", + "name": "test-prov-qwqq", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-qwqq", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "1261616752498607272", + "creationTimestamp": "2017-10-25T18:28:39.780-07:00", + "name": "test-prov-rk8b", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-rk8b", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "4477381122042163839", + "creationTimestamp": "2017-10-25T19:46:40.969-07:00", + "name": "test-prov-rkko", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-rkko", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "4317453642498726913", + "creationTimestamp": "2017-10-30T19:41:50.757-07:00", + "name": "test-prov-t1ne", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-t1ne", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "6824401142363353071", + "creationTimestamp": "2017-11-02T19:14:24.951-07:00", + "name": "test-prov-tv48", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-tv48", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "7948759624098663739", + "creationTimestamp": "2017-10-27T20:04:53.236-07:00", + "name": "test-prov-tznw", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-tznw", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "797895868057968361", + "creationTimestamp": "2017-10-28T21:58:47.028-07:00", + "name": "test-prov-ubye", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-ubye", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "5264799505305193969", + "creationTimestamp": "2017-10-27T20:01:51.317-07:00", + "name": "test-prov-uv3f", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-uv3f", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "7616591844177815901", + "creationTimestamp": "2017-10-29T20:08:35.058-07:00", + "name": "test-prov-uyef", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-uyef", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "4454899957544930272", + "creationTimestamp": "2017-10-27T20:10:07.608-07:00", + "name": "test-prov-v8g5", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-v8g5", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "459413240672046739", + "creationTimestamp": "2017-10-27T19:50:37.348-07:00", + "name": "test-prov-v9bw", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-v9bw", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "6765461976175552927", + "creationTimestamp": "2017-10-29T20:07:28.443-07:00", + "name": "test-prov-wlmd", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-wlmd", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "2531099713853871767", + "creationTimestamp": "2017-10-30T20:05:28.628-07:00", + "name": "test-prov-y1hu", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-y1hu", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "3355977281464040179", + "creationTimestamp": "2017-07-04T18:42:52.051-07:00", + "name": "test-prov-y4yz", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-y4yz", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "4576165545943395929", + "creationTimestamp": "2017-11-02T19:13:10.688-07:00", + "name": "test-prov-zcan", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-zcan", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "7380338127155125322", + "creationTimestamp": "2017-10-30T19:40:37.486-07:00", + "name": "test-prov-zg5a", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/test-prov-zg5a", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + } + ] + }, + "zones/asia-east1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-east1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-east1-b" + } + ] + } + }, + "zones/asia-east1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-east1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-east1-c" + } + ] + } + }, + "zones/us-east1-b": { + "disks": [ + { + "kind": "compute#disk", + "id": "3726854953082335348", + "creationTimestamp": "2017-06-23T05:50:35.301-07:00", + "name": "cfme-auto-ig-dk1z", + "sizeGb": "50", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/disks/cfme-auto-ig-dk1z", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170417", + "sourceImageId": "7117756672907971418", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/diskTypes/pd-standard", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "lastAttachTimestamp": "2017-06-23T05:50:35.305-07:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/instances/cfme-auto-ig-dk1z" + ], + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#disk", + "id": "6532523299604312176", + "creationTimestamp": "2017-06-23T05:50:39.303-07:00", + "name": "cfme-auto-ig-jg50", + "sizeGb": "50", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/disks/cfme-auto-ig-jg50", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170417", + "sourceImageId": "7117756672907971418", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/diskTypes/pd-standard", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "lastAttachTimestamp": "2017-06-23T05:50:39.307-07:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/instances/cfme-auto-ig-jg50" + ], + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#disk", + "id": "8753812778015305845", + "creationTimestamp": "2017-06-23T05:50:35.119-07:00", + "name": "cfme-auto-ig-nddf", + "sizeGb": "50", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/disks/cfme-auto-ig-nddf", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170417", + "sourceImageId": "7117756672907971418", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/diskTypes/pd-standard", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "lastAttachTimestamp": "2017-06-23T05:50:35.122-07:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/instances/cfme-auto-ig-nddf" + ], + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#disk", + "id": "675924650925547653", + "creationTimestamp": "2016-10-05T13:11:22.796-07:00", + "name": "cu-24x7", + "sizeGb": "50", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/disks/cu-24x7", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160919", + "sourceImageId": "4815989652132276633", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/diskTypes/pd-standard", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "lastAttachTimestamp": "2016-10-05T13:11:22.829-07:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/instances/cu-24x7" + ], + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#disk", + "id": "3386293591525348304", + "creationTimestamp": "2018-03-08T09:05:03.711-08:00", + "name": "google-drew0004", + "description": "Created from image: auto-damn-small-linux", + "sizeGb": "10", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/disks/google-drew0004", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "sourceImageId": "3760069348251679990", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/diskTypes/pd-standard", + "labelFingerprint": "42WmSpB8rSM=" + } + ] + }, + "zones/us-east1-c": { + "disks": [ + { + "kind": "compute#disk", + "id": "3920542705169068272", + "creationTimestamp": "2018-05-10T06:50:25.179-07:00", + "name": "simaishi-g3", + "sizeGb": "66", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/disks/simaishi-g3", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/simaishi-g3", + "sourceImageId": "4770961455436133231", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/diskTypes/pd-standard", + "lastAttachTimestamp": "2018-05-10T06:50:25.180-07:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/instances/simaishi-g3" + ], + "labelFingerprint": "42WmSpB8rSM=" + } + ] + }, + "zones/us-east1-d": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east1-d' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east1-d" + } + ] + } + }, + "zones/asia-northeast1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-northeast1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-northeast1-a" + } + ] + } + }, + "zones/asia-northeast1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-northeast1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-northeast1-b" + } + ] + } + }, + "zones/asia-northeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-northeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-northeast1-c" + } + ] + } + }, + "zones/asia-southeast1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-southeast1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-southeast1-a" + } + ] + } + }, + "zones/asia-southeast1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-southeast1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-southeast1-b" + } + ] + } + }, + "zones/asia-southeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-southeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-southeast1-c" + } + ] + } + }, + "zones/us-east4-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east4-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east4-a" + } + ] + } + }, + "zones/us-east4-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east4-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east4-b" + } + ] + } + }, + "zones/us-east4-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east4-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east4-c" + } + ] + } + }, + "zones/australia-southeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/australia-southeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/australia-southeast1-c" + } + ] + } + }, + "zones/australia-southeast1-a": { + "disks": [ + { + "kind": "compute#disk", + "id": "2412094566701326375", + "creationTimestamp": "2018-01-02T20:40:41.264-08:00", + "name": "disk-2", + "sizeGb": "500", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/disks/disk-2", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/diskTypes/pd-standard", + "lastAttachTimestamp": "2018-01-02T20:41:25.212-08:00", + "lastDetachTimestamp": "2018-01-02T21:10:28.791-08:00", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#disk", + "id": "6710479913639489286", + "creationTimestamp": "2018-01-03T18:31:05.698-08:00", + "name": "gke-tachoi-cluster-default-pool-8f292535-2rp9", + "sizeGb": "100", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/disks/gke-tachoi-cluster-default-pool-8f292535-2rp9", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/gke-node-images/global/images/cos-stable-63-10032-71-0-p", + "sourceImageId": "8175041109912149034", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/diskTypes/pd-standard", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos", + "https://www.googleapis.com/compute/v1/projects/gke-node-images/global/licenses/gke-node" + ], + "lastAttachTimestamp": "2018-01-03T18:31:05.713-08:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/instances/gke-tachoi-cluster-default-pool-8f292535-2rp9" + ], + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010", + "1001003" + ] + }, + { + "kind": "compute#disk", + "id": "247095406412967686", + "creationTimestamp": "2018-01-03T18:31:05.864-08:00", + "name": "gke-tachoi-cluster-default-pool-8f292535-9l68", + "sizeGb": "100", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/disks/gke-tachoi-cluster-default-pool-8f292535-9l68", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/gke-node-images/global/images/cos-stable-63-10032-71-0-p", + "sourceImageId": "8175041109912149034", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/diskTypes/pd-standard", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos", + "https://www.googleapis.com/compute/v1/projects/gke-node-images/global/licenses/gke-node" + ], + "lastAttachTimestamp": "2018-01-03T18:31:05.878-08:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/instances/gke-tachoi-cluster-default-pool-8f292535-9l68" + ], + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010", + "1001003" + ] + }, + { + "kind": "compute#disk", + "id": "4034154520121454342", + "creationTimestamp": "2018-01-03T18:31:05.864-08:00", + "name": "gke-tachoi-cluster-default-pool-8f292535-f1gn", + "sizeGb": "100", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a", + "status": "READY", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/disks/gke-tachoi-cluster-default-pool-8f292535-f1gn", + "sourceImage": "https://www.googleapis.com/compute/v1/projects/gke-node-images/global/images/cos-stable-63-10032-71-0-p", + "sourceImageId": "8175041109912149034", + "type": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/diskTypes/pd-standard", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos", + "https://www.googleapis.com/compute/v1/projects/gke-node-images/global/licenses/gke-node" + ], + "lastAttachTimestamp": "2018-01-03T18:31:05.879-08:00", + "users": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/instances/gke-tachoi-cluster-default-pool-8f292535-f1gn" + ], + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010", + "1001003" + ] + } + ] + }, + "zones/australia-southeast1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/australia-southeast1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/australia-southeast1-b" + } + ] + } + }, + "zones/europe-west2-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west2-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west2-a" + } + ] + } + }, + "zones/europe-west2-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west2-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west2-b" + } + ] + } + }, + "zones/europe-west2-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west2-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west2-c" + } + ] + } + }, + "zones/europe-west3-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west3-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west3-c" + } + ] + } + }, + "zones/europe-west3-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west3-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west3-a" + } + ] + } + }, + "zones/europe-west3-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west3-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west3-b" + } + ] + } + }, + "zones/southamerica-east1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/southamerica-east1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/southamerica-east1-a" + } + ] + } + }, + "zones/southamerica-east1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/southamerica-east1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/southamerica-east1-b" + } + ] + } + }, + "zones/southamerica-east1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/southamerica-east1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/southamerica-east1-c" + } + ] + } + }, + "zones/asia-south1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-south1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-south1-b" + } + ] + } + }, + "zones/asia-south1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-south1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-south1-a" + } + ] + } + }, + "zones/asia-south1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-south1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-south1-c" + } + ] + } + }, + "zones/northamerica-northeast1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/northamerica-northeast1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/northamerica-northeast1-a" + } + ] + } + }, + "zones/northamerica-northeast1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/northamerica-northeast1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/northamerica-northeast1-b" + } + ] + } + }, + "zones/northamerica-northeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/northamerica-northeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/northamerica-northeast1-c" + } + ] + } + }, + "zones/europe-west4-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west4-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west4-c" + } + ] + } + }, + "zones/europe-west4-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west4-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west4-b" + } + ] + } + }, + "zones/europe-west4-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west4-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west4-a" + } + ] + } + } + }, + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/disks" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:00 GMT + recorded_at: Fri, 11 May 2018 14:32:50 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-east1/forwardingRules + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/snapshots body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:50 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:00 GMT + - Fri, 11 May 2018 14:32:51 GMT Date: - - Fri, 02 Jun 2017 19:26:00 GMT + - Fri, 11 May 2018 14:32:51 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/HZazKRHndOtHv8nn0-3FMqSxdFQ"' + - '"m5zgsm3eBqrpIvwNxgMUU6DDHQQ=/HLQQ42ZJ0nvID3tPUs18QzlqGtw="' Vary: - Origin - X-Origin @@ -6532,52 +10746,76 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOMRKCMBAAe17BxFa4yWDFG6j8AYQjnsQkk7uQwvHvImNj - bb+zu8+qViv5WfW1MuERs+BpCamMaSZvr9nhQCzqvGN0QDGFOxphMLSRayRP - 2GjddfoCCS0Fz5C5wZFFw6+IDwujWwby68d1E4ncA5RSWhuCdThG4nb/gO8L - bBr+KVav6g2277FR4gAAAA== + encoding: UTF-8 + string: | + { + "kind": "compute#snapshotList", + "id": "projects/GOOGLE_PROJECT/global/snapshots", + "items": [ + { + "kind": "compute#snapshot", + "id": "4530445150875817520", + "creationTimestamp": "2018-05-11T07:29:52.434-07:00", + "name": "test-snapshot-1", + "status": "READY", + "sourceDisk": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/instance-group-1-gvej", + "sourceDiskId": "1368210998906894667", + "diskSizeGb": "10", + "storageBytes": "4023931136", + "storageBytesStatus": "UP_TO_DATE", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/snapshots/test-snapshot-1", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/snapshots" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:00 GMT + recorded_at: Fri, 11 May 2018 14:32:51 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-east4/forwardingRules + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:51 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:00 GMT + - Fri, 11 May 2018 14:32:51 GMT Date: - - Fri, 02 Jun 2017 19:26:00 GMT + - Fri, 11 May 2018 14:32:51 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/mZS12BSD-EFNafLsMAnW1a0dmjM"' + - '"cMIzLBBO6pmNjliIl6Fk27nqAcw=/nKWEMrN4IwOiSWfFIuAYDX-hHM4="' Vary: - Origin - X-Origin @@ -6594,52 +10832,1076 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOMRKCMBAAe17BxFa4yUDFG6j8AYYjnsQkk7uQwvHvImNj - bb+zu8+qViv5WQ21MuERs+BpCalMaSZvL9nhSCzqvGN0QDGFOxphMLSRayRf - sdG663QPCS0Fz5C5wYmlh18RHxZGt4zk14/rJhJ5ACiltDYE63CKxO3+Ad8X - 2DT8U6xe1RsvXeRO4gAAAA== + encoding: UTF-8 + string: | + { + "kind": "compute#imageList", + "id": "projects/GOOGLE_PROJECT/global/images", + "items": [ + { + "kind": "compute#image", + "id": "3760069348251679990", + "creationTimestamp": "2016-09-05T07:32:57.152-07:00", + "name": "auto-damn-small-linux", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "53171912", + "diskSizeGb": "1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/auto-damn-small-linux", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6297991031181395861", + "creationTimestamp": "2018-02-14T10:01:31.203-08:00", + "name": "cfme-56402-02272311", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "667529600", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-56402-02272311", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3200930199014490385", + "creationTimestamp": "2017-09-13T21:05:18.467-07:00", + "name": "cfme-57400-09132134", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "722728640", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-57400-09132134", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2391660903302172677", + "creationTimestamp": "2017-12-07T13:13:14.206-08:00", + "name": "cfme-57402-12072017", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "759842304", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-57402-12072017", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4833196901650762182", + "creationTimestamp": "2018-04-03T19:23:38.290-07:00", + "name": "cfme-57403-0404115", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "732167680", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-57403-0404115", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "934811191997213832", + "creationTimestamp": "2017-08-25T05:04:55.701-07:00", + "name": "cfme-58200-0825110", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "980242890", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-58200-0825110", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6799473886617895722", + "creationTimestamp": "2017-09-26T04:45:09.246-07:00", + "name": "cfme-58201-09252059", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1006858240", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-58201-09252059", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4919006581590033034", + "creationTimestamp": "2017-10-05T07:06:29.335-07:00", + "name": "cfme-58202-1005138", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "989894400", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-58202-1005138", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1772986309062417696", + "creationTimestamp": "2017-10-17T13:10:55.787-07:00", + "name": "cfme-58203-10171918", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "987606208", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-58203-10171918", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3444501127224043629", + "creationTimestamp": "2017-12-14T07:19:30.654-08:00", + "name": "cfme-58300-12141413", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "989102144", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-58300-12141413", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "755220707892303968", + "creationTimestamp": "2018-01-15T14:09:20.085-08:00", + "name": "cfme-58301-0115211", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "990681472", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-58301-0115211", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6121145447825820261", + "creationTimestamp": "2018-02-15T12:58:51.044-08:00", + "name": "cfme-58302-01301625", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "992285248", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-58302-01301625", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8183901837890546895", + "creationTimestamp": "2018-02-20T08:51:44.944-08:00", + "name": "cfme-58303-02092259", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "993721408", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-58303-02092259", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1922813288192692592", + "creationTimestamp": "2018-02-21T14:15:59.750-08:00", + "name": "cfme-58304-02212116", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "987849024", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-58304-02212116", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1802417366251453338", + "creationTimestamp": "2018-04-03T15:51:33.907-07:00", + "name": "cfme-58305-04032143", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "990635712", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-58305-04032143", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6143741799056348378", + "creationTimestamp": "2018-04-16T06:50:46.116-07:00", + "name": "cfme-58401-041438", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1067237440", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-58401-041438", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4984550393813741353", + "creationTimestamp": "2018-04-25T07:33:42.961-07:00", + "name": "cfme-58402-04251340", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1067796608", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-58402-04251340", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7274036728761674618", + "creationTimestamp": "2018-01-10T10:04:06.132-08:00", + "name": "cfme-59016-01101637", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "949547520", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-59016-01101637", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2340139197181081791", + "creationTimestamp": "2018-01-17T09:22:24.501-08:00", + "name": "cfme-59017-01171621", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "925325312", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-59017-01171621", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1060011434259085111", + "creationTimestamp": "2018-01-30T11:39:04.852-08:00", + "name": "cfme-59019-01301845", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "924226304", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-59019-01301845", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5295394451392322288", + "creationTimestamp": "2018-02-09T10:10:39.912-08:00", + "name": "cfme-59020-0207129", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "924444608", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-59020-0207129", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2819522809429567323", + "creationTimestamp": "2018-02-14T12:19:01.211-08:00", + "name": "cfme-59021-02141929", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "922548672", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-59021-02141929", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2923676659712101973", + "creationTimestamp": "2018-02-23T07:18:18.333-08:00", + "name": "cfme-59022-02221740", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "925196288", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-59022-02221740", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1957546577044667638", + "creationTimestamp": "2018-03-15T11:57:29.613-07:00", + "name": "cfme-59100-03151341", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "933151296", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-59100-03151341", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3452921552338639545", + "creationTimestamp": "2018-04-02T19:17:58.593-07:00", + "name": "cfme-59102-0402034", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "930478784", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-59102-0402034", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1475896686636121080", + "creationTimestamp": "2018-03-21T09:15:20.228-07:00", + "name": "cfme-59200-03211446", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "976393216", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-59200-03211446", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4235542401296597653", + "creationTimestamp": "2018-04-11T09:48:58.848-07:00", + "name": "cfme-59202-04111524", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "972698304", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-59202-04111524", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7671197800632437636", + "creationTimestamp": "2018-04-20T07:13:00.212-07:00", + "name": "cfme-59203-04201337", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1000613952", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-59203-04201337", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5188484095386368562", + "creationTimestamp": "2018-05-01T17:22:54.129-07:00", + "name": "cfme-59204-05012256", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "980859264", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/cfme-59204-05012256", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2443352595736774420", + "creationTimestamp": "2016-05-26T06:28:27.061-07:00", + "name": "image-manual-cfme-test", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "686245743", + "diskSizeGb": "40", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/image-manual-cfme-test", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3855983578563895133", + "creationTimestamp": "2018-03-13T07:35:30.314-07:00", + "name": "miq-nightly-201803122000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1952036864", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201803122000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2257605550827408025", + "creationTimestamp": "2018-03-14T07:40:54.905-07:00", + "name": "miq-nightly-201803132000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1982566912", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201803132000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8506289985866375708", + "creationTimestamp": "2018-03-15T09:18:59.757-07:00", + "name": "miq-nightly-201803142000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1956282048", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201803142000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8779231936301633494", + "creationTimestamp": "2018-03-16T04:57:46.624-07:00", + "name": "miq-nightly-201803152000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1901314688", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201803152000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4486083107981329792", + "creationTimestamp": "2018-03-24T04:50:08.213-07:00", + "name": "miq-nightly-201803232000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2035020800", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201803232000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2038047436837192462", + "creationTimestamp": "2018-03-30T06:38:41.602-07:00", + "name": "miq-nightly-201803292000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2059048512", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201803292000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3521455443531711619", + "creationTimestamp": "2018-03-31T05:09:16.819-07:00", + "name": "miq-nightly-201803302000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2065513984", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201803302000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2080877756956991908", + "creationTimestamp": "2018-04-03T04:02:35.696-07:00", + "name": "miq-nightly-201804022000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2066041024", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201804022000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5778586393968706327", + "creationTimestamp": "2018-04-04T04:58:49.386-07:00", + "name": "miq-nightly-201804032000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2064340928", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201804032000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7211576634274198012", + "creationTimestamp": "2018-04-05T04:57:08.212-07:00", + "name": "miq-nightly-201804042000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2062832256", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201804042000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1560575420035042478", + "creationTimestamp": "2018-04-07T04:57:53.611-07:00", + "name": "miq-nightly-201804062000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2077372928", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201804062000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3782728869772021924", + "creationTimestamp": "2018-04-11T04:15:24.323-07:00", + "name": "miq-nightly-201804102000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2096591680", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201804102000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7490057958649427496", + "creationTimestamp": "2018-04-12T04:53:44.122-07:00", + "name": "miq-nightly-201804112000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2094727168", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201804112000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2342400914066453179", + "creationTimestamp": "2018-04-17T17:07:49.560-07:00", + "name": "miq-nightly-201804170908", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2080225216", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201804170908", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1332475870223987037", + "creationTimestamp": "2018-04-18T07:01:23.097-07:00", + "name": "miq-nightly-201804172000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2084005568", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201804172000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5263906113404039141", + "creationTimestamp": "2018-04-20T04:37:47.179-07:00", + "name": "miq-nightly-201804192000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2106939648", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201804192000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2968702056007641772", + "creationTimestamp": "2018-04-27T05:14:59.970-07:00", + "name": "miq-nightly-201804262000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1784827712", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201804262000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "32415481906916134", + "creationTimestamp": "2018-04-28T22:19:06.141-07:00", + "name": "miq-nightly-201804281416", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1791410496", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201804281416", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6119236167360970106", + "creationTimestamp": "2018-05-01T03:38:13.696-07:00", + "name": "miq-nightly-201804302000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1791053952", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201804302000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7193329796427031820", + "creationTimestamp": "2018-05-02T04:07:15.903-07:00", + "name": "miq-nightly-201805012000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1795406080", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201805012000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3285339169760958498", + "creationTimestamp": "2018-05-03T03:39:10.192-07:00", + "name": "miq-nightly-201805022000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1798773184", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201805022000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6347166400972455517", + "creationTimestamp": "2018-05-04T04:14:58.624-07:00", + "name": "miq-nightly-201805032000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1825178688", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201805032000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5550445981834687348", + "creationTimestamp": "2018-05-05T03:55:24.345-07:00", + "name": "miq-nightly-201805042000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1554243840", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201805042000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2020784850882838913", + "creationTimestamp": "2018-05-08T03:43:58.995-07:00", + "name": "miq-nightly-201805072001", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1800153216", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201805072001", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6301134715317349890", + "creationTimestamp": "2018-05-09T03:43:58.332-07:00", + "name": "miq-nightly-201805082000", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1796841792", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-nightly-201805082000", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2692884289965357338", + "creationTimestamp": "2017-12-12T22:25:57.404-08:00", + "name": "miq-stable-gapri-20171212", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1553944192", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-stable-gapri-20171212", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2980841424595392766", + "creationTimestamp": "2018-01-25T19:52:49.996-08:00", + "name": "miq-stable-gapri-20180125", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1538500288", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-stable-gapri-20180125", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2459070548151626269", + "creationTimestamp": "2018-03-06T00:44:35.046-08:00", + "name": "miq-stable-gapri-20180305", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1540537600", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/miq-stable-gapri-20180305", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8675730040584086379", + "creationTimestamp": "2018-03-06T05:54:12.393-08:00", + "name": "simaishi-g-2", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1540537600", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/simaishi-g-2", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4770961455436133231", + "creationTimestamp": "2018-05-10T06:47:45.177-07:00", + "name": "simaishi-g3", + "description": "", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "1405702400", + "diskSizeGb": "66", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images/simaishi-g3", + "labelFingerprint": "42WmSpB8rSM=" + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/images" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:00 GMT + recorded_at: Fri, 11 May 2018 14:32:51 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-west1/forwardingRules + uri: https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:51 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:00 GMT + - Fri, 11 May 2018 14:32:51 GMT Date: - - Fri, 02 Jun 2017 19:26:00 GMT + - Fri, 11 May 2018 14:32:51 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/a0_ehRdoC9mhXon6X-TOU6-VlKU"' + - '"aHDSv63kjegzdE_CMJi9lkDHizg=/B7EYxm1W1vpY01OmdnBZwaAKZ1w="' Vary: - Origin - X-Origin @@ -6656,52 +11918,3514 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOMRKCMBAAe17BxFa4yWDFG6j8AYQjnsQkk7uQwvHvImNj - bb+zu8+qViv5WfW1MuERs+BpCamMaSZvr9nhQCzqvGN0QDGFOxphMLSRayRP - 2GjddfoCCS0Fz5C5Kcii4VfEh4XRLQP59eO6iUTuAUoprQ3BOhwjcbt/wPcF - Ng3/FKtX9QY+InOS4gAAAA== + encoding: UTF-8 + string: | + { + "kind": "compute#imageList", + "id": "projects/centos-cloud/global/images", + "items": [ + { + "kind": "compute#image", + "id": "11748647391859510935", + "creationTimestamp": "2013-11-25T15:13:50.611-08:00", + "name": "centos-6-v20131120", + "description": "SCSI-enabled CentOS 6 built on 2013-11-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150226" + }, + "status": "READY", + "archiveSizeBytes": "269993565", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20131120", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "11743140967858608122", + "creationTimestamp": "2014-03-19T15:01:13.388-07:00", + "name": "centos-6-v20140318", + "description": "CentOS 6.5 x86_64 built on 2014-03-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140408" + }, + "status": "READY", + "archiveSizeBytes": "341230444", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140318", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "18033188469723077298", + "creationTimestamp": "2014-04-09T10:31:57.518-07:00", + "name": "centos-6-v20140408", + "description": "CentOS 6.5 x86_64 built on 2014-04-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140415" + }, + "status": "READY", + "archiveSizeBytes": "342252847", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140408", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "10463166969914166288", + "creationTimestamp": "2014-04-22T12:05:16.927-07:00", + "name": "centos-6-v20140415", + "description": "CentOS 6.5 x86_64 built on 2014-04-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140522" + }, + "status": "READY", + "archiveSizeBytes": "1026663807", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140415", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "14390164727436022001", + "creationTimestamp": "2014-06-03T10:21:42.109-07:00", + "name": "centos-6-v20140522", + "description": "CentOS 6.5 x86_64 built on 2014-05-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140606" + }, + "status": "READY", + "archiveSizeBytes": "1028292810", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140522", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "16310166269920012092", + "creationTimestamp": "2014-06-05T11:04:45.767-07:00", + "name": "centos-6-v20140605", + "description": "CentOS 6.5 x86_64 built on 2014-06-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140606" + }, + "status": "READY", + "archiveSizeBytes": "1028745777", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140605", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6290630306542078308", + "creationTimestamp": "2014-06-06T13:16:42.265-07:00", + "name": "centos-6-v20140606", + "description": "CentOS 6.5 x86_64 built on 2014-06-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140619" + }, + "status": "READY", + "archiveSizeBytes": "1028757792", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140606", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3614861379648377676", + "creationTimestamp": "2014-06-24T13:28:11.552-07:00", + "name": "centos-6-v20140619", + "description": "CentOS 6.5 x86_64 built on 2014-06-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140718" + }, + "status": "READY", + "archiveSizeBytes": "1029860991", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140619", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "16259951858818091437", + "creationTimestamp": "2014-07-24T09:02:18.298-07:00", + "name": "centos-6-v20140718", + "description": "CentOS 6.5 x86_64 built on 2014-07-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140924" + }, + "status": "READY", + "archiveSizeBytes": "1031630715", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140718", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "13087714199807465700", + "creationTimestamp": "2014-09-24T19:21:53.421-07:00", + "name": "centos-6-v20140924", + "description": "CentOS 6.5 x86_64 built on 2014-09-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140926" + }, + "status": "READY", + "archiveSizeBytes": "1040237724", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140924", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2580521871229876339", + "creationTimestamp": "2014-09-29T09:26:44.364-07:00", + "name": "centos-6-v20140926", + "description": "CentOS 6.5 x86_64 built on 2014-09-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20141007" + }, + "status": "READY", + "archiveSizeBytes": "1040082792", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20140926", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3381938258505751441", + "creationTimestamp": "2014-10-16T14:52:10.720-07:00", + "name": "centos-6-v20141007", + "description": "CentOS 6.5 x86_64 built on 2014-10-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20141016" + }, + "status": "READY", + "archiveSizeBytes": "1040311077", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20141007", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2365868823508405185", + "creationTimestamp": "2014-10-17T16:46:57.144-07:00", + "name": "centos-6-v20141016", + "description": "CentOS 6.5 x86_64 built on 2014-10-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20141021" + }, + "status": "READY", + "archiveSizeBytes": "1040361036", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20141016", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "10836725743769588052", + "creationTimestamp": "2014-10-22T18:24:03.632-07:00", + "name": "centos-6-v20141021", + "description": "CentOS 6.5 x86_64 built on 2014-10-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20141108" + }, + "status": "READY", + "archiveSizeBytes": "1040416587", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20141021", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4053040619898291132", + "creationTimestamp": "2014-11-10T14:25:17.670-08:00", + "name": "centos-6-v20141108", + "description": "CentOS 6.6 x86_64 built on 2014-11-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20141205" + }, + "status": "READY", + "archiveSizeBytes": "1049466963", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20141108", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "17207937043950962086", + "creationTimestamp": "2014-12-08T16:14:54.943-08:00", + "name": "centos-6-v20141205", + "description": "CentOS 6.6 x86_64 built on 2014-12-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20141218" + }, + "status": "READY", + "archiveSizeBytes": "1056393081", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20141205", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "907962088156683116", + "creationTimestamp": "2015-01-05T14:58:22.893-08:00", + "name": "centos-6-v20141218", + "description": "CentOS 6.6 x86_64 built on 2014-12-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150127" + }, + "status": "READY", + "archiveSizeBytes": "1059378636", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20141218", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5988327005577719010", + "creationTimestamp": "2015-01-28T19:22:18.793-08:00", + "name": "centos-6-v20150127", + "description": "CentOS 6.6 x86_64 built on 2015-01-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150226" + }, + "status": "READY", + "archiveSizeBytes": "1069927815", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150127", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4611832715356664432", + "creationTimestamp": "2015-03-03T16:06:55.660-08:00", + "name": "centos-6-v20150226", + "description": "CentOS 6.6 x86_64 built on 2015-02-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150309" + }, + "status": "READY", + "archiveSizeBytes": "1070216250", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150226", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "17659069595839012", + "creationTimestamp": "2015-03-10T13:32:11.088-07:00", + "name": "centos-6-v20150309", + "description": "CentOS 6.6 x86_64 built on 2015-03-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150325" + }, + "status": "READY", + "archiveSizeBytes": "1071016431", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150309", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8461891139530134602", + "creationTimestamp": "2015-03-27T12:08:21.223-07:00", + "name": "centos-6-v20150325", + "description": "CentOS 6.6 x86_64 built on 2015-03-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150423" + }, + "status": "READY", + "archiveSizeBytes": "1073280543", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150325", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1236970662567818014", + "creationTimestamp": "2015-04-30T13:17:53.280-07:00", + "name": "centos-6-v20150423", + "description": "CentOS, CentOS, 6.6, x86_64 built on 2015-04-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150526" + }, + "status": "READY", + "archiveSizeBytes": "1076839890", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150423", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2039774146963671920", + "creationTimestamp": "2015-05-27T14:22:39.436-07:00", + "name": "centos-6-v20150526", + "description": "CentOS, CentOS, 6.6, x86_64 built on 2015-05-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150603" + }, + "status": "READY", + "archiveSizeBytes": "1057854717", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150526", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6874335862446529973", + "creationTimestamp": "2015-06-09T10:33:14.961-07:00", + "name": "centos-6-v20150603", + "description": "CentOS, CentOS, 6.6, x86_64 built on 2015-06-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150710" + }, + "status": "READY", + "archiveSizeBytes": "1056531357", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150603", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2223645373384728207", + "creationTimestamp": "2015-07-13T13:32:32.483-07:00", + "name": "centos-6-v20150710", + "description": "CentOS, CentOS, 6.6, x86_64 built on 2015-07-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150818" + }, + "status": "READY", + "archiveSizeBytes": "1133229966", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150710", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6894473778679920044", + "creationTimestamp": "2015-08-24T14:23:15.359-07:00", + "name": "centos-6-v20150818", + "description": "CentOS, CentOS, 6.7, x86_64 built on 2015-08-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150915" + }, + "status": "READY", + "archiveSizeBytes": "1195400307", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150818", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3436617427102109144", + "creationTimestamp": "2015-09-17T14:40:07.888-07:00", + "name": "centos-6-v20150915", + "description": "CentOS, CentOS, 6.7, x86_64 built on 2015-09-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150929" + }, + "status": "READY", + "archiveSizeBytes": "1195676424", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150915", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8679235824895233246", + "creationTimestamp": "2015-10-06T13:42:25.827-07:00", + "name": "centos-6-v20150929", + "description": "CentOS, CentOS, 6.7, x86_64 built on 2015-09-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20151104" + }, + "status": "READY", + "archiveSizeBytes": "1601346623", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20150929", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6336419851710270692", + "creationTimestamp": "2015-11-09T15:53:47.185-08:00", + "name": "centos-6-v20151104", + "description": "CentOS, CentOS, 6.7, x86_64 built on 2015-11-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160119" + }, + "status": "READY", + "archiveSizeBytes": "1603643551", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20151104", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7271869067411238187", + "creationTimestamp": "2016-01-19T20:57:40.897-08:00", + "name": "centos-6-v20160119", + "description": "CentOS, CentOS, 6.7, x86_64 built on 2016-01-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160126" + }, + "status": "READY", + "archiveSizeBytes": "1566147863", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160119", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8655611619264754778", + "creationTimestamp": "2016-01-27T14:54:45.972-08:00", + "name": "centos-6-v20160126", + "description": "CentOS, CentOS, 6.7, x86_64 built on 2016-01-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160211" + }, + "status": "READY", + "archiveSizeBytes": "1568529883", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160126", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8672515987778489428", + "creationTimestamp": "2016-02-16T11:04:27.813-08:00", + "name": "centos-6-v20160211", + "description": "CentOS, CentOS, 6.7, x86_64 built on 2016-02-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160216" + }, + "status": "READY", + "archiveSizeBytes": "1571223967", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160211", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1254058245730432810", + "creationTimestamp": "2016-02-17T11:28:05.814-08:00", + "name": "centos-6-v20160216", + "description": "CentOS, CentOS, 6.7, x86_64 built on 2016-02-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160219" + }, + "status": "READY", + "archiveSizeBytes": "1571347207", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160216", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3815153940189077775", + "creationTimestamp": "2016-02-22T11:22:08.805-08:00", + "name": "centos-6-v20160219", + "description": "CentOS, CentOS, 6.7, x86_64 built on 2016-02-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160301" + }, + "status": "READY", + "archiveSizeBytes": "1571019135", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160219", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6926478801177923041", + "creationTimestamp": "2016-03-01T20:58:54.141-08:00", + "name": "centos-6-v20160301", + "description": "CentOS, CentOS, 6.7, x86_64 built on 2016-03-01", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160329" + }, + "status": "READY", + "archiveSizeBytes": "1571832323", + "diskSizeGb": "10", + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160301", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6108985974573872594", + "creationTimestamp": "2016-03-30T10:22:05.153-07:00", + "name": "centos-6-v20160329", + "description": "CentOS, CentOS, 6.7, x86_64 built on 2016-03-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160418" + }, + "status": "READY", + "archiveSizeBytes": "1572682611", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160329", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "45205709922227751", + "creationTimestamp": "2016-04-19T10:20:08.411-07:00", + "name": "centos-6-v20160418", + "description": "CentOS, CentOS, 6, x86_64 built on 2016-04-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160511" + }, + "status": "READY", + "archiveSizeBytes": "1575600663", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160418", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "895867503796379826", + "creationTimestamp": "2016-05-12T12:49:49.041-07:00", + "name": "centos-6-v20160511", + "description": "CentOS, CentOS, 6, x86_64 built on 2016-05-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160526" + }, + "status": "READY", + "archiveSizeBytes": "1575710811", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160511", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3724556630217116657", + "creationTimestamp": "2016-05-26T15:13:50.339-07:00", + "name": "centos-6-v20160526", + "description": "CentOS, CentOS, 6, x86_64 built on 2016-05-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160606" + }, + "status": "READY", + "archiveSizeBytes": "1651295375", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160526", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "178124553916496976", + "creationTimestamp": "2016-06-09T16:58:55.988-07:00", + "name": "centos-6-v20160606", + "description": "CentOS, CentOS, 6, x86_64 built on 2016-06-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160629" + }, + "status": "READY", + "archiveSizeBytes": "2532017011", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160606", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2213309839509682941", + "creationTimestamp": "2016-06-29T14:56:34.394-07:00", + "name": "centos-6-v20160629", + "description": "CentOS, CentOS, 6, x86_64 built on 2016-06-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160711" + }, + "status": "READY", + "archiveSizeBytes": "2461450315", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160629", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7038210992415215142", + "creationTimestamp": "2016-07-12T11:02:49.424-07:00", + "name": "centos-6-v20160711", + "description": "CentOS, CentOS, 6, x86_64 built on 2016-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160718" + }, + "status": "READY", + "archiveSizeBytes": "2682028083", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160711", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6365941008775038437", + "creationTimestamp": "2016-07-18T17:57:46.104-07:00", + "name": "centos-6-v20160718", + "description": "CentOS, CentOS, 6, x86_64 built on 2016-07-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160803" + }, + "status": "READY", + "archiveSizeBytes": "2500233115", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160718", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7262745599111214816", + "creationTimestamp": "2016-08-04T11:23:11.219-07:00", + "name": "centos-6-v20160803", + "description": "CentOS, CentOS, 6, x86_64 built on 2016-08-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160921" + }, + "status": "READY", + "archiveSizeBytes": "3315321464", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160803", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9026990865776228119", + "creationTimestamp": "2016-09-22T09:42:32.097-07:00", + "name": "centos-6-v20160921", + "description": "CentOS, CentOS, 6, x86_64 built on 2016-09-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20161026" + }, + "status": "READY", + "archiveSizeBytes": "3337068794", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20160921", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "545457382813946905", + "creationTimestamp": "2016-10-26T10:42:14.505-07:00", + "name": "centos-6-v20161026", + "description": "CentOS, CentOS, 6, x86_64 built on 2016-10-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20161027" + }, + "status": "READY", + "archiveSizeBytes": "3954592170", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20161026", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4127729522386664728", + "creationTimestamp": "2016-10-27T11:14:15.465-07:00", + "name": "centos-6-v20161027", + "description": "CentOS, CentOS, 6, x86_64 built on 2016-10-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20161129" + }, + "status": "READY", + "archiveSizeBytes": "4003865658", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20161027", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5468505156986578251", + "creationTimestamp": "2016-11-29T16:21:56.589-08:00", + "name": "centos-6-v20161129", + "description": "CentOS, CentOS, 6, x86_64 built on 2016-11-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20161208" + }, + "status": "READY", + "archiveSizeBytes": "3958897470", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20161129", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5908633910629387238", + "creationTimestamp": "2016-12-08T16:04:25.598-08:00", + "name": "centos-6-v20161208", + "description": "CentOS, CentOS, 6, x86_64 built on 2016-12-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20161212" + }, + "status": "READY", + "archiveSizeBytes": "3970536708", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20161208", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5262726857160929587", + "creationTimestamp": "2016-12-14T10:30:52.053-08:00", + "name": "centos-6-v20161212", + "description": "CentOS, CentOS, 6, x86_64 built on 2016-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170110" + }, + "status": "READY", + "archiveSizeBytes": "3942360630", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20161212", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "9166443080832460383", + "creationTimestamp": "2017-01-11T12:42:24.468-08:00", + "name": "centos-6-v20170110", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-01-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170124" + }, + "status": "READY", + "archiveSizeBytes": "4047260874", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170110", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "4378787957309067654", + "creationTimestamp": "2017-01-24T16:20:57.951-08:00", + "name": "centos-6-v20170124", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-01-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170223" + }, + "status": "READY", + "archiveSizeBytes": "4004414724", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170124", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "1110372352480392958", + "creationTimestamp": "2017-02-23T17:10:41.767-08:00", + "name": "centos-6-v20170223", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-02-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170227" + }, + "status": "READY", + "archiveSizeBytes": "4187255658", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170223", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "8331643473045994040", + "creationTimestamp": "2017-02-28T15:16:39.573-08:00", + "name": "centos-6-v20170227", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-02-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170327" + }, + "status": "READY", + "archiveSizeBytes": "4228591770", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170227", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "6864121747226459524", + "creationTimestamp": "2017-03-28T13:11:23.494-07:00", + "name": "centos-6-v20170327", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-03-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170426" + }, + "status": "READY", + "archiveSizeBytes": "4141276968", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170327", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "3747888464489608391", + "creationTimestamp": "2017-04-27T12:44:40.850-07:00", + "name": "centos-6-v20170426", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-04-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170523" + }, + "status": "READY", + "archiveSizeBytes": "4835135198", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170426", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "9083622586524893466", + "creationTimestamp": "2017-05-24T10:16:37.276-07:00", + "name": "centos-6-v20170523", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-05-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170616" + }, + "status": "READY", + "archiveSizeBytes": "5247720036", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170523", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "3842040087561223979", + "creationTimestamp": "2017-06-19T09:54:28.928-07:00", + "name": "centos-6-v20170616", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-06-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170620" + }, + "status": "READY", + "archiveSizeBytes": "6175053663", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170616", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "3153713587728687573", + "creationTimestamp": "2017-06-20T15:18:34.859-07:00", + "name": "centos-6-v20170620", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-06-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170717" + }, + "status": "READY", + "archiveSizeBytes": "6800503984", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170620", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "4510390977965588159", + "creationTimestamp": "2017-07-18T10:07:28.151-07:00", + "name": "centos-6-v20170717", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-07-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170805" + }, + "status": "READY", + "archiveSizeBytes": "6195457774", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170717", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "2391555165546782337", + "creationTimestamp": "2017-08-06T06:58:06.965-07:00", + "name": "centos-6-v20170805", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-08-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170816" + }, + "status": "READY", + "archiveSizeBytes": "6889131588", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170805", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "3702536822471543950", + "creationTimestamp": "2017-08-17T12:45:37.229-07:00", + "name": "centos-6-v20170816", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-08-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170829" + }, + "status": "READY", + "archiveSizeBytes": "6753476134", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170816", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "1678688060101577152", + "creationTimestamp": "2017-08-30T10:34:39.706-07:00", + "name": "centos-6-v20170829", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-08-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170918" + }, + "status": "READY", + "archiveSizeBytes": "6703794788", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170829", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "4257209330239857983", + "creationTimestamp": "2017-09-19T11:02:56.083-07:00", + "name": "centos-6-v20170918", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-09-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20171018" + }, + "status": "READY", + "archiveSizeBytes": "7405275648", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20170918", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "8066502175377100211", + "creationTimestamp": "2017-10-19T16:21:00.248-07:00", + "name": "centos-6-v20171018", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-10-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20171025" + }, + "status": "READY", + "archiveSizeBytes": "7895668992", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20171018", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "1891071130582624965", + "creationTimestamp": "2017-10-26T09:58:18.870-07:00", + "name": "centos-6-v20171025", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-10-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20171129" + }, + "status": "READY", + "archiveSizeBytes": "7412045568", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20171025", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "5697431990480792815", + "creationTimestamp": "2017-11-30T10:46:24.667-08:00", + "name": "centos-6-v20171129", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-11-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20171213" + }, + "status": "READY", + "archiveSizeBytes": "8348892032", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20171129", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "2005999649309000806", + "creationTimestamp": "2017-12-14T09:53:13.369-08:00", + "name": "centos-6-v20171213", + "description": "CentOS, CentOS, 6, x86_64 built on 2017-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180104" + }, + "status": "READY", + "archiveSizeBytes": "8549894912", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20171213", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "3351476817111509920", + "creationTimestamp": "2018-01-04T17:30:55.891-08:00", + "name": "centos-6-v20180104", + "description": "CentOS, CentOS, 6, x86_64 built on 2018-01-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180129" + }, + "status": "READY", + "archiveSizeBytes": "8759296000", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180104", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "7771589770670311373", + "creationTimestamp": "2018-01-30T10:27:46.566-08:00", + "name": "centos-6-v20180129", + "description": "CentOS, CentOS, 6, x86_64 built on v20180129", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180205" + }, + "status": "READY", + "archiveSizeBytes": "10377884160", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180129", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "2999808030240228764", + "creationTimestamp": "2018-02-05T16:48:51.977-08:00", + "name": "centos-6-v20180205", + "description": "CentOS, CentOS, 6, x86_64 built on v20180205", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180227" + }, + "status": "READY", + "archiveSizeBytes": "10847485440", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180205", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "513418816528611504", + "creationTimestamp": "2018-03-05T14:36:15.953-08:00", + "name": "centos-6-v20180227", + "description": "CentOS, CentOS, 6, x86_64 built on 20180227", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180314" + }, + "status": "READY", + "archiveSizeBytes": "10788380160", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180227", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "2739754993178788003", + "creationTimestamp": "2018-03-16T10:26:37.039-07:00", + "name": "centos-6-v20180314", + "description": "CentOS, CentOS, 6, x86_64 built on 20180314", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180401" + }, + "status": "READY", + "archiveSizeBytes": "10726087680", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180314", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "925108255241040855", + "creationTimestamp": "2018-04-01T23:27:04.845-07:00", + "name": "centos-6-v20180401", + "description": "CentOS, CentOS, 6, x86_64 built on 20180401", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180507" + }, + "status": "READY", + "archiveSizeBytes": "10846291200", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180401", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "3274517024702555732", + "creationTimestamp": "2018-05-07T15:52:44.265-07:00", + "name": "centos-6-v20180507", + "description": "CentOS, CentOS, 6, x86_64 built on 20180507", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180510" + }, + "status": "READY", + "archiveSizeBytes": "10716940800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180507", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "5643077439884670665", + "creationTimestamp": "2018-05-10T20:04:06.823-07:00", + "name": "centos-6-v20180510", + "description": "CentOS, CentOS, 6, x86_64 built on 20180510", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "10559143680", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-6" + ], + "family": "centos-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-6-v20180510", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000206" + ] + }, + { + "kind": "compute#image", + "id": "4568702763004249623", + "creationTimestamp": "2014-09-04T09:50:19.966-07:00", + "name": "centos-7-v20140903", + "description": "CentOS 7.0 x86_64 built on 2014-09-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20140924" + }, + "status": "READY", + "archiveSizeBytes": "1168167201", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20140903", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4822681162745636585", + "creationTimestamp": "2014-09-24T19:57:13.650-07:00", + "name": "centos-7-v20140924", + "description": "CentOS 7 x86_64 built on 2014-09-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20140926" + }, + "status": "READY", + "archiveSizeBytes": "1181699781", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20140924", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "11630347837395986864", + "creationTimestamp": "2014-09-29T09:29:54.626-07:00", + "name": "centos-7-v20140926", + "description": "CentOS 7 x86_64 built on 2014-09-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20141007" + }, + "status": "READY", + "archiveSizeBytes": "1182441174", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20140926", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "13420104487111729570", + "creationTimestamp": "2014-10-16T14:18:33.905-07:00", + "name": "centos-7-v20141007", + "description": "CentOS 7.0 x86_64 built on 2014-10-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20141016" + }, + "status": "READY", + "archiveSizeBytes": "1182982164", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20141007", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4506010319257803087", + "creationTimestamp": "2014-10-17T16:43:06.539-07:00", + "name": "centos-7-v20141016", + "description": "CentOS 7.0 x86_64 built on 2014-10-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20141021" + }, + "status": "READY", + "archiveSizeBytes": "1184558412", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20141016", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4536638025069785573", + "creationTimestamp": "2014-10-22T18:27:40.851-07:00", + "name": "centos-7-v20141021", + "description": "CentOS 7 x86_64 built on 2014-10-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20141108" + }, + "status": "READY", + "archiveSizeBytes": "1183591245", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20141021", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "853041310537923411", + "creationTimestamp": "2014-11-10T14:22:16.416-08:00", + "name": "centos-7-v20141108", + "description": "CentOS 7 x86_64 built on 2014-11-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20141205" + }, + "status": "READY", + "archiveSizeBytes": "1192600188", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20141108", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9955643093605856709", + "creationTimestamp": "2014-12-08T16:35:02.271-08:00", + "name": "centos-7-v20141205", + "description": "CentOS 7 x86_64 built on 2014-12-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20141218" + }, + "status": "READY", + "archiveSizeBytes": "1196735889", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20141205", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4809836014772868503", + "creationTimestamp": "2015-01-05T14:54:47.349-08:00", + "name": "centos-7-v20141218", + "description": "CentOS 7 x86_64 built on 2014-12-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150127" + }, + "status": "READY", + "archiveSizeBytes": "1201145025", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20141218", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9812507426971718529", + "creationTimestamp": "2015-01-28T19:19:09.280-08:00", + "name": "centos-7-v20150127", + "description": "CentOS 7 x86_64 built on 2015-01-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150226" + }, + "status": "READY", + "archiveSizeBytes": "1215767874", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150127", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "848743723932840478", + "creationTimestamp": "2015-03-03T16:08:17.872-08:00", + "name": "centos-7-v20150226", + "description": "CentOS 7 x86_64 built on 2015-02-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150309" + }, + "status": "READY", + "archiveSizeBytes": "1218452391", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150226", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2060792561539410536", + "creationTimestamp": "2015-03-10T13:31:03.109-07:00", + "name": "centos-7-v20150309", + "description": "CentOS 7 x86_64 built on 2015-03-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150325" + }, + "status": "READY", + "archiveSizeBytes": "1217676246", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150309", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5754090688068719631", + "creationTimestamp": "2015-03-27T12:09:20.845-07:00", + "name": "centos-7-v20150325", + "description": "CentOS 7 x86_64 built on 2015-03-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150423" + }, + "status": "READY", + "archiveSizeBytes": "1217929215", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150325", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6047445488489148610", + "creationTimestamp": "2015-04-30T13:18:53.201-07:00", + "name": "centos-7-v20150423", + "description": "CentOS, CentOS, 7, x86_64 built on 2015-04-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150526" + }, + "status": "READY", + "archiveSizeBytes": "1183175424", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150423", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2915201787420707637", + "creationTimestamp": "2015-05-27T14:23:38.886-07:00", + "name": "centos-7-v20150526", + "description": "CentOS, CentOS, 7.1.1503, x86_64 built on 2015-05-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150603" + }, + "status": "READY", + "archiveSizeBytes": "1190907255", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150526", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1973199963443338581", + "creationTimestamp": "2015-06-09T10:34:50.314-07:00", + "name": "centos-7-v20150603", + "description": "CentOS, CentOS, 7.1.1503, x86_64 built on 2015-06-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150710" + }, + "status": "READY", + "archiveSizeBytes": "1189327374", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150603", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8297792628255727222", + "creationTimestamp": "2015-07-13T13:33:29.744-07:00", + "name": "centos-7-v20150710", + "description": "CentOS, CentOS, 7.1.1503, x86_64 built on 2015-07-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150818" + }, + "status": "READY", + "archiveSizeBytes": "1200795426", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150710", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6561876587929023862", + "creationTimestamp": "2015-08-24T14:24:41.898-07:00", + "name": "centos-7-v20150818", + "description": "CentOS, CentOS, 7.1.1503, x86_64 built on 2015-08-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150915" + }, + "status": "READY", + "archiveSizeBytes": "1207581579", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150818", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5779912740115484003", + "creationTimestamp": "2015-09-17T14:41:32.614-07:00", + "name": "centos-7-v20150915", + "description": "CentOS, CentOS, 7.1.1503, x86_64 built on 2015-09-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150929" + }, + "status": "READY", + "archiveSizeBytes": "1211968149", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150915", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7716058656801393790", + "creationTimestamp": "2015-10-06T13:44:01.187-07:00", + "name": "centos-7-v20150929", + "description": "CentOS, CentOS, 7.1.1503, x86_64 built on 2015-09-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20151104" + }, + "status": "READY", + "archiveSizeBytes": "1617065807", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20150929", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8838584153871781432", + "creationTimestamp": "2015-11-09T15:48:39.859-08:00", + "name": "centos-7-v20151104", + "description": "CentOS, CentOS, 7.1.1503, x86_64 built on 2015-11-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160119" + }, + "status": "READY", + "archiveSizeBytes": "1626537155", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20151104", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8660497917661064586", + "creationTimestamp": "2016-01-19T20:56:05.273-08:00", + "name": "centos-7-v20160119", + "description": "CentOS, CentOS, 7.2.1511, x86_64 built on 2016-01-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160126" + }, + "status": "READY", + "archiveSizeBytes": "1640721499", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160119", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5025100056290980886", + "creationTimestamp": "2016-01-27T14:55:53.533-08:00", + "name": "centos-7-v20160126", + "description": "CentOS, CentOS, 7.2.1511, x86_64 built on 2016-01-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160211" + }, + "status": "READY", + "archiveSizeBytes": "1641768043", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160126", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "54163706009799829", + "creationTimestamp": "2016-02-16T11:03:22.399-08:00", + "name": "centos-7-v20160211", + "description": "CentOS, CentOS, 7.2.1511, x86_64 built on 2016-02-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160216" + }, + "status": "READY", + "archiveSizeBytes": "1644778227", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160211", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5307226326143956207", + "creationTimestamp": "2016-02-17T11:29:04.712-08:00", + "name": "centos-7-v20160216", + "description": "CentOS, CentOS, 7.2.1511, x86_64 built on 2016-02-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160219" + }, + "status": "READY", + "archiveSizeBytes": "1645431659", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160216", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "117817058366250736", + "creationTimestamp": "2016-02-22T11:23:11.288-08:00", + "name": "centos-7-v20160219", + "description": "CentOS, CentOS, 7.2.1511, x86_64 built on 2016-02-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160301" + }, + "status": "READY", + "archiveSizeBytes": "1645444919", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160219", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3677031631651851296", + "creationTimestamp": "2016-03-01T20:57:51.795-08:00", + "name": "centos-7-v20160301", + "description": "CentOS, CentOS, 7.2.1511, x86_64 built on 2016-03-01", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160329" + }, + "status": "READY", + "archiveSizeBytes": "1645295467", + "diskSizeGb": "10", + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160301", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5059873404309583251", + "creationTimestamp": "2016-03-30T10:23:08.878-07:00", + "name": "centos-7-v20160329", + "description": "CentOS, CentOS, 7.2.1511, x86_64 built on 2016-03-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160418" + }, + "status": "READY", + "archiveSizeBytes": "1646339675", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160329", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2898231190483621856", + "creationTimestamp": "2016-04-19T10:21:19.403-07:00", + "name": "centos-7-v20160418", + "description": "CentOS, CentOS, 7, x86_64 built on 2016-04-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160511" + }, + "status": "READY", + "archiveSizeBytes": "1690218283", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160418", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5721431653635153993", + "creationTimestamp": "2016-05-12T12:51:02.587-07:00", + "name": "centos-7-v20160511", + "description": "CentOS, CentOS, 7, x86_64 built on 2016-05-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160606" + }, + "status": "READY", + "archiveSizeBytes": "1690475303", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160511", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1889620002910747979", + "creationTimestamp": "2016-06-09T17:02:44.099-07:00", + "name": "centos-7-v20160606", + "description": "CentOS, CentOS, 7, x86_64 built on 2016-06-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160629" + }, + "status": "READY", + "archiveSizeBytes": "2814828983", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160606", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2745708994769844877", + "creationTimestamp": "2016-06-29T14:57:54.595-07:00", + "name": "centos-7-v20160629", + "description": "CentOS, CentOS, 7, x86_64 built on 2016-06-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160711" + }, + "status": "READY", + "archiveSizeBytes": "2847054883", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160629", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1396713101988499085", + "creationTimestamp": "2016-07-12T11:01:06.332-07:00", + "name": "centos-7-v20160711", + "description": "CentOS, CentOS, 7, x86_64 built on 2016-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160718" + }, + "status": "READY", + "archiveSizeBytes": "2829030891", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160711", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1351690450177672234", + "creationTimestamp": "2016-07-18T17:56:37.633-07:00", + "name": "centos-7-v20160718", + "description": "CentOS, CentOS, 7, x86_64 built on 2016-07-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160803" + }, + "status": "READY", + "archiveSizeBytes": "2826321723", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160718", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7502263907890640569", + "creationTimestamp": "2016-08-04T11:24:22.175-07:00", + "name": "centos-7-v20160803", + "description": "CentOS, CentOS, 7, x86_64 built on 2016-08-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160921" + }, + "status": "READY", + "archiveSizeBytes": "3534289944", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160803", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3345701383252326214", + "creationTimestamp": "2016-09-22T09:41:13.610-07:00", + "name": "centos-7-v20160921", + "description": "CentOS, CentOS, 7, x86_64 built on 2016-09-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20161025" + }, + "status": "READY", + "archiveSizeBytes": "3601115289", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20160921", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5235113928293489857", + "creationTimestamp": "2016-10-25T11:19:26.250-07:00", + "name": "centos-7-v20161025", + "description": "CentOS, CentOS, 7, x86_64 built on 2016-10-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20161027" + }, + "status": "READY", + "archiveSizeBytes": "4356848832", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20161025", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4534636931622894250", + "creationTimestamp": "2016-10-27T11:15:33.312-07:00", + "name": "centos-7-v20161027", + "description": "CentOS, CentOS, 7, x86_64 built on 2016-10-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20161129" + }, + "status": "READY", + "archiveSizeBytes": "4319037810", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20161027", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8628576586818627004", + "creationTimestamp": "2016-11-29T16:20:35.171-08:00", + "name": "centos-7-v20161129", + "description": "CentOS, CentOS, 7, x86_64 built on 2016-11-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20161212" + }, + "status": "READY", + "archiveSizeBytes": "4319033076", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20161129", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8650499281020268919", + "creationTimestamp": "2016-12-14T10:29:44.741-08:00", + "name": "centos-7-v20161212", + "description": "CentOS, CentOS, 7, x86_64 built on 2016-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170110" + }, + "status": "READY", + "archiveSizeBytes": "4491098988", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20161212", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "6699622773219337753", + "creationTimestamp": "2017-01-11T12:43:34.658-08:00", + "name": "centos-7-v20170110", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-01-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170124" + }, + "status": "READY", + "archiveSizeBytes": "4537193190", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170110", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "3033065083021971804", + "creationTimestamp": "2017-01-24T16:22:11.779-08:00", + "name": "centos-7-v20170124", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-01-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170223" + }, + "status": "READY", + "archiveSizeBytes": "4698721914", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170124", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "6769386339310909737", + "creationTimestamp": "2017-02-23T17:09:26.516-08:00", + "name": "centos-7-v20170223", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-02-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170227" + }, + "status": "READY", + "archiveSizeBytes": "4706733012", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170223", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "4890196529355931002", + "creationTimestamp": "2017-02-28T15:11:17.984-08:00", + "name": "centos-7-v20170227", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-02-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170327" + }, + "status": "READY", + "archiveSizeBytes": "4835969526", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170227", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "447698369464728900", + "creationTimestamp": "2017-03-28T13:12:27.756-07:00", + "name": "centos-7-v20170327", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-03-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170426" + }, + "status": "READY", + "archiveSizeBytes": "4621606560", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170327", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "5992902547674756879", + "creationTimestamp": "2017-04-27T12:43:28.666-07:00", + "name": "centos-7-v20170426", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-04-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170523" + }, + "status": "READY", + "archiveSizeBytes": "5620418746", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170426", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "8171633968241181019", + "creationTimestamp": "2017-05-24T10:15:32.130-07:00", + "name": "centos-7-v20170523", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-05-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170616" + }, + "status": "READY", + "archiveSizeBytes": "6400686020", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170523", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "3466558228180352098", + "creationTimestamp": "2017-06-19T09:57:49.783-07:00", + "name": "centos-7-v20170616", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-06-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170620" + }, + "status": "READY", + "archiveSizeBytes": "7233122067", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170616", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "5221862210449711470", + "creationTimestamp": "2017-06-20T15:19:45.383-07:00", + "name": "centos-7-v20170620", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-06-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170717" + }, + "status": "READY", + "archiveSizeBytes": "8041135164", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170620", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "4829074772484947680", + "creationTimestamp": "2017-07-18T10:06:23.083-07:00", + "name": "centos-7-v20170717", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-07-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170719" + }, + "status": "READY", + "archiveSizeBytes": "6562137624", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170717", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "9168785680564903962", + "creationTimestamp": "2017-07-19T15:36:37.572-07:00", + "name": "centos-7-v20170719", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-07-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170816" + }, + "status": "READY", + "archiveSizeBytes": "6582061054", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170719", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "954560959160536305", + "creationTimestamp": "2017-08-17T12:44:30.189-07:00", + "name": "centos-7-v20170816", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-08-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170829" + }, + "status": "READY", + "archiveSizeBytes": "7570296512", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170816", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "4960063913426897282", + "creationTimestamp": "2017-08-30T10:35:41.988-07:00", + "name": "centos-7-v20170829", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-08-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170918" + }, + "status": "READY", + "archiveSizeBytes": "7542367336", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170829", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "5203558034783920875", + "creationTimestamp": "2017-09-19T11:03:48.980-07:00", + "name": "centos-7-v20170918", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-09-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20171003" + }, + "status": "READY", + "archiveSizeBytes": "10292442624", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20170918", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "8193040493265699771", + "creationTimestamp": "2017-10-03T14:12:53.221-07:00", + "name": "centos-7-v20171003", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-10-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20171018" + }, + "status": "READY", + "archiveSizeBytes": "10037548032", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20171003", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "2177691284838583782", + "creationTimestamp": "2017-10-19T16:19:37.966-07:00", + "name": "centos-7-v20171018", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-10-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20171025" + }, + "status": "READY", + "archiveSizeBytes": "10160167680", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20171018", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "5631027483984767623", + "creationTimestamp": "2017-10-26T09:59:20.905-07:00", + "name": "centos-7-v20171025", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-10-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20171129" + }, + "status": "READY", + "archiveSizeBytes": "9986757120", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20171025", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "4704976489891622820", + "creationTimestamp": "2017-11-30T10:43:23.704-08:00", + "name": "centos-7-v20171129", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-11-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20171213" + }, + "status": "READY", + "archiveSizeBytes": "11045825024", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20171129", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "4705912019669156903", + "creationTimestamp": "2017-12-14T09:54:16.683-08:00", + "name": "centos-7-v20171213", + "description": "CentOS, CentOS, 7, x86_64 built on 2017-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180104" + }, + "status": "READY", + "archiveSizeBytes": "10714262208", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20171213", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "4512789218935907733", + "creationTimestamp": "2018-01-04T13:24:10.946-08:00", + "name": "centos-7-v20180104", + "description": "CentOS, CentOS, 7, x86_64 built on 2018-01-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180129" + }, + "status": "READY", + "archiveSizeBytes": "10036146432", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180104", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "1315952345063688141", + "creationTimestamp": "2018-01-30T10:27:46.590-08:00", + "name": "centos-7-v20180129", + "description": "CentOS, CentOS, 7, x86_64 built on v20180129", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180227" + }, + "status": "READY", + "archiveSizeBytes": "10664624640", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180129", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "440291406266792112", + "creationTimestamp": "2018-03-05T14:36:15.482-08:00", + "name": "centos-7-v20180227", + "description": "CentOS, CentOS, 7, x86_64 built on 20180227", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180314" + }, + "status": "READY", + "archiveSizeBytes": "11114138880", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180227", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "668558558585307299", + "creationTimestamp": "2018-03-16T10:26:37.137-07:00", + "name": "centos-7-v20180314", + "description": "CentOS, CentOS, 7, x86_64 built on 20180314", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180401" + }, + "status": "READY", + "archiveSizeBytes": "11646105600", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180314", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "2113153890725426135", + "creationTimestamp": "2018-04-01T23:27:04.843-07:00", + "name": "centos-7-v20180401", + "description": "CentOS, CentOS, 7, x86_64 built on 20180401", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180507" + }, + "status": "READY", + "archiveSizeBytes": "11591208960", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180401", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "3730693017403483732", + "creationTimestamp": "2018-05-07T15:52:44.143-07:00", + "name": "centos-7-v20180507", + "description": "CentOS, CentOS, 7, x86_64 built on 20180507", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180510" + }, + "status": "READY", + "archiveSizeBytes": "11356750080", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180507", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + }, + { + "kind": "compute#image", + "id": "7713210638144157385", + "creationTimestamp": "2018-05-10T20:04:06.766-07:00", + "name": "centos-7-v20180510", + "description": "CentOS, CentOS, 7, x86_64 built on 20180510", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "12794016000", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "family": "centos-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images/centos-7-v20180510", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000207" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/images" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:00 GMT + recorded_at: Fri, 11 May 2018 14:32:51 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions + uri: https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:51 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:01 GMT + - Fri, 11 May 2018 14:32:52 GMT Date: - - Fri, 02 Jun 2017 19:26:01 GMT + - Fri, 11 May 2018 14:32:52 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/YvQ4v37Ma9CTU2MfnxtEfKoRBWk"' + - '"8Fg6o0Vt_HOGRh38m_5v-7sng9A=/a0YhT8kIqyipyrXPkFOLhK1ZYxA="' Vary: - Origin - X-Origin @@ -6718,69 +15442,4649 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAO3ab2+iMBwH8Oe+CsM9HdAWhI1nnhpjztNF8NHlYhjrHDcV - D8pMbtl7X/EvmwO0o/jgumQP1nbfwo+tn9D6UqtLT/7iXrLqkhfMlzHB30I8 - 9YNF34+IdEW7/XXnMgz+YI9Equc/+zOZxHdYhlDToK5uxkebwQTPIzr+V61e - f6HfWenJ4PouGyIEtg1eiF1C+x1/jiPizpdJPwLQkIEhQ92BpoVuLHitmAaU - gWmB3S8u3DlOxrqR78rYjQjcdtzjyAv9ZRL6aT+dhcTJJUvj223Tv2CBdzdB - f3wkZBlZqrparZRpEExn2F36kUJvSN3elPoM1ZwCrfPUw8yyu5mIR/Qdv2hP - SpJ/b2r0Nw6IeyjS+lnT5jkmoe8l1Wzdju3ttdSlmT/3CW01kQJ2bXHkTpNH - BhSwbnm9ykhq9+wf9sQZOs3+pPv9KLMB6BdDrO00nV5r0my3Rx3b7hxfLIIM - qb3BZGx3clKNG5ZrtdvlF6A/bNHA3GjEGN0b0OoOWp1JdzQc3x4XQSshdfKz - OWh2O6PjdNj4Svpnf7Usec2xM7Rphcu7wlGn2xsO6JPKjWYq7T765BrnTpNa - KCI8e+j7i6dkli+vSVtqUqtSsiat7+oMbRonaKPLyHQoMDqwGqZighxtFkFI - HovIORpUrTuH6fngk8rnIlAqvwSGkF4+QxAgnQtDJg+FkFa2Qgjo13wQYq1s - EUJsK+WpC2TJBrGVIA8KfgQxcXm2QLmzVAJQak1nUMgoVghSdaADNKsBLQAV - E4JshaIgLlboaFC1Ch2m56NQKv9OKCGUEEoIJS6uRGrNPV8JCErbGcNxGCyx - vMKZRHwyojIf0nOX/grxLtzjGX4v9sjEHpnYIxN7ZJffI3u3mp8vDyhPnjiS - PbwgoTvLgOd4QGXupKYu/Z0knV02aensskVLZz/wAQ3yAU3nI1rh1TKJVpjK - IhoSpLGln0haQ5B2OdLSTpwvGtKKRNNlcCMDzYGGBTVLp/+zUMsSLWer7UNv - lZbxOYLZB3OQZhPM6b2JEzPGf8+MUIYt/URlCp+ZUIarMsyHOmYRMaYMoAyB - Awzqi6VpiokoOdeZxOi5xOgXIkbn8a60CeZkly4+NyBOhMSJkDgRuuyJ0H7d - ZrAFlrkhl3MM9KG3Sls2hygcbOFzrrQPFrYIW4QtwpZL23I47Kmtp+IykVR7 - rb0B1/WilTg0AAA= + encoding: UTF-8 + string: | + { + "kind": "compute#imageList", + "id": "projects/cos-cloud/global/images", + "items": [ + { + "kind": "compute#image", + "id": "7376571045679932712", + "creationTimestamp": "2017-01-20T15:22:47.964-08:00", + "name": "cos-beta-56-9000-66-0", + "description": "Google, Container-Optimized OS, beta 56-9000.66.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-56-9000-76-0" + }, + "status": "READY", + "archiveSizeBytes": "1104084336", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-56-9000-66-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "9056048071827723214", + "creationTimestamp": "2017-01-26T18:14:57.919-08:00", + "name": "cos-beta-56-9000-76-0", + "description": "Google, Container-Optimized OS, beta 56-9000.76.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.8 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-56-9000-80-0" + }, + "status": "READY", + "archiveSizeBytes": "1106981346", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-56-9000-76-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3446956130557528466", + "creationTimestamp": "2017-01-31T17:18:53.472-08:00", + "name": "cos-beta-56-9000-80-0", + "description": "Google, Container-Optimized OS, beta 56-9000.80.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.8 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-56-9000-84-0" + }, + "status": "READY", + "archiveSizeBytes": "1104471450", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-56-9000-80-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "1714770153355769916", + "creationTimestamp": "2017-02-08T17:33:07.360-08:00", + "name": "cos-beta-56-9000-84-0", + "description": "Google, Container-Optimized OS, beta 56-9000.84.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.8 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-57-9202-30-0" + }, + "status": "READY", + "archiveSizeBytes": "1104683928", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-56-9000-84-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4525660737725239948", + "creationTimestamp": "2017-02-16T14:49:07.277-08:00", + "name": "cos-beta-57-9202-30-0", + "description": "Google, Container-Optimized OS, beta 57-9202.30.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.2 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-57-9202-38-0" + }, + "status": "READY", + "archiveSizeBytes": "1071994776", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-57-9202-30-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7139366998422438097", + "creationTimestamp": "2017-02-24T10:41:02.857-08:00", + "name": "cos-beta-57-9202-38-0", + "description": "Google, Container-Optimized OS, beta 57-9202.38.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.2 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-57-9202-51-0" + }, + "status": "READY", + "archiveSizeBytes": "1071673734", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-57-9202-38-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6163350811580854709", + "creationTimestamp": "2017-03-15T16:33:47.071-07:00", + "name": "cos-beta-57-9202-51-0", + "description": "Google, Container-Optimized OS, beta 57-9202.51.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.2 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-58-9334-19-0" + }, + "status": "READY", + "archiveSizeBytes": "1072025538", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-57-9202-51-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7763673286977310566", + "creationTimestamp": "2017-03-24T12:20:41.790-07:00", + "name": "cos-beta-58-9334-19-0", + "description": "Google, Container-Optimized OS, beta 58-9334.19.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-58-9334-28-0" + }, + "status": "READY", + "archiveSizeBytes": "1072108488", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-58-9334-19-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3514925989475063723", + "creationTimestamp": "2017-03-31T12:08:52.839-07:00", + "name": "cos-beta-58-9334-28-0", + "description": "Google, Container-Optimized OS, beta 58-9334.28.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-58-9334-35-0" + }, + "status": "READY", + "archiveSizeBytes": "1071311238", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-58-9334-28-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2381346788478758580", + "creationTimestamp": "2017-04-06T12:00:43.373-07:00", + "name": "cos-beta-58-9334-35-0", + "description": "Google, Container-Optimized OS, beta 58-9334.35.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-58-9334-53-0" + }, + "status": "READY", + "archiveSizeBytes": "1071567756", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-58-9334-35-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5166332290490735052", + "creationTimestamp": "2017-04-20T14:24:51.797-07:00", + "name": "cos-beta-58-9334-53-0", + "description": "Google, Container-Optimized OS, beta 58-9334.53.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-58-9334-56-0" + }, + "status": "READY", + "archiveSizeBytes": "1254157849", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-58-9334-53-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3519833152840261067", + "creationTimestamp": "2017-04-27T14:31:16.919-07:00", + "name": "cos-beta-58-9334-56-0", + "description": "Google, Container-Optimized OS, beta 58-9334.56.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-59-9460-20-0" + }, + "status": "READY", + "archiveSizeBytes": "1259926276", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-58-9334-56-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "59929845618624450", + "creationTimestamp": "2017-05-25T17:39:09.655-07:00", + "name": "cos-beta-58-9334-74-0", + "description": "Google, Container-Optimized OS, 58-9334.74.0 beta, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED" + }, + "status": "READY", + "archiveSizeBytes": "1439817280", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-58-9334-74-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7744137052725675991", + "creationTimestamp": "2017-05-03T13:10:32.330-07:00", + "name": "cos-beta-59-9460-20-0", + "description": "Google, Container-Optimized OS, beta 59-9460.20.0, Kernel: ChromiumOS-4.4.52 Kubernetes: 1.6.1 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-59-9460-43-0" + }, + "status": "READY", + "archiveSizeBytes": "1230367194", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-59-9460-20-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8128937934577488235", + "creationTimestamp": "2017-05-18T12:01:24.382-07:00", + "name": "cos-beta-59-9460-43-0", + "description": "Google, Container-Optimized OS, 59-9460.43.0 beta, Kernel: ChromiumOS-4.4.52 Kubernetes: 1.6.1 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-59-9460-51-0" + }, + "status": "READY", + "archiveSizeBytes": "1405927048", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-59-9460-43-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "9116021406034478787", + "creationTimestamp": "2017-05-25T17:34:53.027-07:00", + "name": "cos-beta-59-9460-51-0", + "description": "Google, Container-Optimized OS, 59-9460.51.0 beta, Kernel: ChromiumOS-4.4.52 Kubernetes: 1.6.1 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-59-9460-57-0" + }, + "status": "READY", + "archiveSizeBytes": "1405980320", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-59-9460-51-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3164787838774265195", + "creationTimestamp": "2017-06-01T13:39:32.902-07:00", + "name": "cos-beta-59-9460-57-0", + "description": "Google, Container-Optimized OS, 59-9460.57.0 beta, Kernel: ChromiumOS-4.4.52 Kubernetes: 1.6.1 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-60-9592-11-0" + }, + "status": "READY", + "archiveSizeBytes": "1405589128", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-59-9460-57-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "229861244592727256", + "creationTimestamp": "2017-06-08T11:40:55.269-07:00", + "name": "cos-beta-60-9592-11-0", + "description": "Google, Container-Optimized OS, 60-9592.11.0 beta, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-60-9592-23-0" + }, + "status": "READY", + "archiveSizeBytes": "1671717762", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-60-9592-11-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3116987631618596735", + "creationTimestamp": "2017-06-16T11:21:04.637-07:00", + "name": "cos-beta-60-9592-23-0", + "description": "Google, Container-Optimized OS, 60-9592.23.0 beta, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-60-9592-31-0" + }, + "status": "READY", + "archiveSizeBytes": "1671750054", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-60-9592-23-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3621611293506280490", + "creationTimestamp": "2017-06-26T17:11:49.705-07:00", + "name": "cos-beta-60-9592-31-0", + "description": "Google, Container-Optimized OS, 60-9592.31.0 beta, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-60-9592-52-0" + }, + "status": "READY", + "archiveSizeBytes": "1857182620", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-60-9592-31-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2386785308022206949", + "creationTimestamp": "2017-07-11T15:19:54.239-07:00", + "name": "cos-beta-60-9592-52-0", + "description": "Google, Container-Optimized OS, 60-9592.52.0 beta, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-60-9592-65-0" + }, + "status": "READY", + "archiveSizeBytes": "1857459100", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-60-9592-52-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5555233302767289118", + "creationTimestamp": "2017-07-20T12:01:05.423-07:00", + "name": "cos-beta-60-9592-65-0", + "description": "Google, Container-Optimized OS, 60-9592.65.0 beta, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-60-9592-70-0" + }, + "status": "READY", + "archiveSizeBytes": "1857325970", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-60-9592-65-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5371809186723636418", + "creationTimestamp": "2017-07-27T09:51:57.402-07:00", + "name": "cos-beta-60-9592-70-0", + "description": "Google, Container-Optimized OS, 60-9592.70.0 beta, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-61-9765-17-0" + }, + "status": "READY", + "archiveSizeBytes": "1858101640", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-60-9592-70-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "599494410776436176", + "creationTimestamp": "2017-08-04T14:12:31.525-07:00", + "name": "cos-beta-61-9765-17-0", + "description": "Google, Container-Optimized OS, 61-9765.17.0 beta, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-61-9765-24-0" + }, + "status": "READY", + "archiveSizeBytes": "2047382326", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-61-9765-17-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "284164019347242190", + "creationTimestamp": "2017-08-11T12:14:41.413-07:00", + "name": "cos-beta-61-9765-24-0", + "description": "Google, Container-Optimized OS, 61-9765.24.0 beta, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-61-9765-31-0" + }, + "status": "READY", + "archiveSizeBytes": "2045475982", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-61-9765-24-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2927960060711394409", + "creationTimestamp": "2017-08-17T20:44:07.016-07:00", + "name": "cos-beta-61-9765-31-0", + "description": "Google, Container-Optimized OS, 61-9765.31.0 beta, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-61-9765-50-0" + }, + "status": "READY", + "archiveSizeBytes": "2044957838", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-61-9765-31-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7818990571678363793", + "creationTimestamp": "2017-09-01T14:17:50.651-07:00", + "name": "cos-beta-61-9765-50-0", + "description": "Google, Container-Optimized OS, 61-9765.50.0 beta, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.9 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-61-9765-58-0" + }, + "status": "READY", + "archiveSizeBytes": "2043507653", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-61-9765-50-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6345062842003008466", + "creationTimestamp": "2017-09-08T15:10:05.786-07:00", + "name": "cos-beta-61-9765-58-0", + "description": "Google, Container-Optimized OS, 61-9765.58.0 beta, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.9 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-62-9901-21-0" + }, + "status": "READY", + "archiveSizeBytes": "2229547008", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-61-9765-58-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "87861147519118336", + "creationTimestamp": "2017-09-20T13:43:27.484-07:00", + "name": "cos-beta-62-9901-21-0", + "description": "Google, Container-Optimized OS, 62-9901.21.0 beta, Kernel: ChromiumOS-4.4.79 Kubernetes: 1.7.6 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-62-9901-37-0" + }, + "status": "READY", + "archiveSizeBytes": "2286996480", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-62-9901-21-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7662083794181780950", + "creationTimestamp": "2017-10-05T17:15:53.600-07:00", + "name": "cos-beta-62-9901-37-0", + "description": "Google, Container-Optimized OS, 62-9901.37.0 beta, Kernel: ChromiumOS-4.4.79 Kubernetes: 1.7.6 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-62-9901-45-0" + }, + "status": "READY", + "archiveSizeBytes": "2286692352", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-62-9901-37-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8127103171789224830", + "creationTimestamp": "2017-10-12T12:42:09.675-07:00", + "name": "cos-beta-62-9901-45-0", + "description": "Google, Container-Optimized OS, 62-9901.45.0 beta, Kernel: ChromiumOS-4.4.79 Kubernetes: 1.7.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-62-9901-50-0" + }, + "status": "READY", + "archiveSizeBytes": "2289199104", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-62-9901-45-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4762523953577385767", + "creationTimestamp": "2017-10-19T19:39:04.229-07:00", + "name": "cos-beta-62-9901-50-0", + "description": "Google, Container-Optimized OS, 62-9901.50.0 beta, Kernel: ChromiumOS-4.4.79 Kubernetes: 1.7.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-63-10032-22-0" + }, + "status": "READY", + "archiveSizeBytes": "2285936640", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-62-9901-50-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7413593294423521154", + "creationTimestamp": "2017-10-31T21:11:25.886-07:00", + "name": "cos-beta-63-10032-22-0", + "description": "Google, Container-Optimized OS, 63-10032.22.0 beta, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.8 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-63-10032-32-0" + }, + "status": "READY", + "archiveSizeBytes": "2482186304", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-63-10032-22-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8379816272890233847", + "creationTimestamp": "2017-11-09T12:39:52.450-08:00", + "name": "cos-beta-63-10032-32-0", + "description": "Google, Container-Optimized OS, 63-10032.32.0 beta, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.8 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-63-10032-40-0" + }, + "status": "READY", + "archiveSizeBytes": "2484063296", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-63-10032-32-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "1686905054052764446", + "creationTimestamp": "2017-11-16T12:32:49.581-08:00", + "name": "cos-beta-63-10032-40-0", + "description": "Google, Container-Optimized OS, 63-10032.40.0 beta, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.8 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-63-10032-50-0" + }, + "status": "READY", + "archiveSizeBytes": "2484209728", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-63-10032-40-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2196154889639853069", + "creationTimestamp": "2017-11-22T10:33:06.764-08:00", + "name": "cos-beta-63-10032-50-0", + "description": "Google, Container-Optimized OS, 63-10032.50.0 beta, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.8 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-63-10032-60-0" + }, + "status": "READY", + "archiveSizeBytes": "2482928448", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-63-10032-50-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2623757843602150837", + "creationTimestamp": "2017-11-30T17:07:39.080-08:00", + "name": "cos-beta-63-10032-60-0", + "description": "Google, Container-Optimized OS, 63-10032.60.0 beta, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.8 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-63-10032-62-0" + }, + "status": "READY", + "archiveSizeBytes": "2482772032", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-63-10032-60-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2078912955449423349", + "creationTimestamp": "2017-12-06T16:28:10.605-08:00", + "name": "cos-beta-63-10032-62-0", + "description": "Google, Container-Optimized OS, 63-10032.62.0 beta, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.8 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-63-10032-71-0" + }, + "status": "READY", + "archiveSizeBytes": "2481973312", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-63-10032-62-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4899800144922764428", + "creationTimestamp": "2017-12-08T10:31:00.259-08:00", + "name": "cos-beta-63-10032-71-0", + "description": "Google, Container-Optimized OS, 63-10032.71.0 beta, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.8 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-64-10176-39-0" + }, + "status": "READY", + "archiveSizeBytes": "2480076352", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-63-10032-71-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "935215331205296280", + "creationTimestamp": "2018-01-05T15:47:03.780-08:00", + "name": "cos-beta-64-10176-39-0", + "description": "Google, Container-Optimized OS, 64-10176.39.0 beta, Kernel: ChromiumOS-4.4.96 Kubernetes: 1.8.2 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-64-10176-49-0" + }, + "status": "READY", + "archiveSizeBytes": "2406923584", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-64-10176-39-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "248636560939101267", + "creationTimestamp": "2018-01-16T16:03:08.906-08:00", + "name": "cos-beta-64-10176-49-0", + "description": "Google, Container-Optimized OS, 64-10176.49.0 beta, Kernel: ChromiumOS-4.4.96 Kubernetes: 1.8.2 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-64-10176-60-0" + }, + "status": "READY", + "archiveSizeBytes": "2777119680", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-64-10176-49-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6469065368207155155", + "creationTimestamp": "2018-01-24T20:46:52.685-08:00", + "name": "cos-beta-64-10176-60-0", + "description": "Google, Container-Optimized OS, 64-10176.60.0 beta, Kernel: ChromiumOS-4.4.96 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-65-10323-12-0" + }, + "status": "READY", + "archiveSizeBytes": "2776797120", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-64-10176-60-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3495126624005346164", + "creationTimestamp": "2018-02-02T15:00:44.389-08:00", + "name": "cos-beta-65-10323-12-0", + "description": "Google, Container-Optimized OS, 65-10323.12.0 beta, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-65-10323-23-0" + }, + "status": "READY", + "archiveSizeBytes": "2782560960", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-65-10323-12-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5520950646126239310", + "creationTimestamp": "2018-02-08T15:43:30.663-08:00", + "name": "cos-beta-65-10323-23-0", + "description": "Google, Container-Optimized OS, 65-10323.23.0 beta, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-65-10323-33-0" + }, + "status": "READY", + "archiveSizeBytes": "2781781440", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-65-10323-23-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5700800640698793373", + "creationTimestamp": "2018-02-15T14:02:27.143-08:00", + "name": "cos-beta-65-10323-33-0", + "description": "Google, Container-Optimized OS, 65-10323.33.0 beta, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-65-10323-39-0" + }, + "status": "READY", + "archiveSizeBytes": "2782303680", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-65-10323-33-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7899773288652330469", + "creationTimestamp": "2018-02-23T11:27:06.739-08:00", + "name": "cos-beta-65-10323-39-0", + "description": "Google, Container-Optimized OS, 65-10323.39.0 beta, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-65-10323-47-0" + }, + "status": "READY", + "archiveSizeBytes": "2783206080", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-65-10323-39-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3153272043554021459", + "creationTimestamp": "2018-03-01T16:45:49.314-08:00", + "name": "cos-beta-65-10323-47-0", + "description": "Google, Container-Optimized OS, 65-10323.47.0 beta, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-65-10323-51-0" + }, + "status": "READY", + "archiveSizeBytes": "2782987200", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-65-10323-47-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6870811656965597495", + "creationTimestamp": "2018-03-08T12:06:49.435-08:00", + "name": "cos-beta-65-10323-51-0", + "description": "Google, Container-Optimized OS, 65-10323.51.0 beta, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-65-10323-55-0" + }, + "status": "READY", + "archiveSizeBytes": "2782680000", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-65-10323-51-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7977998760666049826", + "creationTimestamp": "2018-03-16T11:58:21.963-07:00", + "name": "cos-beta-65-10323-55-0", + "description": "Google, Container-Optimized OS, 65-10323.55.0 beta, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-66-10452-21-0" + }, + "status": "READY", + "archiveSizeBytes": "2781566400", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-65-10323-55-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8883036614333192687", + "creationTimestamp": "2018-03-22T10:25:21.088-07:00", + "name": "cos-beta-66-10452-21-0", + "description": "Google, Container-Optimized OS, 66-10452.21.0 beta, Kernel: ChromiumOS-4.14.22 Kubernetes: 1.9.3 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-66-10452-28-0" + }, + "status": "READY", + "archiveSizeBytes": "2904757440", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-66-10452-21-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "386834147354611756", + "creationTimestamp": "2018-03-29T20:28:04.374-07:00", + "name": "cos-beta-66-10452-28-0", + "description": "Google, Container-Optimized OS, 66-10452.28.0 beta, Kernel: ChromiumOS-4.14.22 Kubernetes: 1.9.3 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-66-10452-45-0" + }, + "status": "READY", + "archiveSizeBytes": "2903643840", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-66-10452-28-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2837827509077829176", + "creationTimestamp": "2018-04-06T13:30:16.659-07:00", + "name": "cos-beta-66-10452-45-0", + "description": "Google, Container-Optimized OS, 66-10452.45.0 beta, Kernel: ChromiumOS-4.14.22 Kubernetes: 1.9.3 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-66-10452-53-0" + }, + "status": "READY", + "archiveSizeBytes": "2904745920", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-66-10452-45-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6879787807909119974", + "creationTimestamp": "2018-04-13T16:11:06.244-07:00", + "name": "cos-beta-66-10452-53-0", + "description": "Google, Container-Optimized OS, 66-10452.53.0 beta, Kernel: ChromiumOS-4.14.22 Kubernetes: 1.9.3 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-66-10452-68-0" + }, + "status": "READY", + "archiveSizeBytes": "2904135360", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-66-10452-53-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "841692186397842510", + "creationTimestamp": "2018-04-20T19:32:02.242-07:00", + "name": "cos-beta-66-10452-68-0", + "description": "Google, Container-Optimized OS, 66-10452.68.0 beta, Kernel: ChromiumOS-4.14.22 Kubernetes: 1.9.3 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-66-10452-74-0" + }, + "status": "READY", + "archiveSizeBytes": "2903924160", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-66-10452-68-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4479309459227475557", + "creationTimestamp": "2018-04-25T19:59:23.089-07:00", + "name": "cos-beta-67-10575-13-0", + "description": "Google, Container-Optimized OS, 67-10575.13.0 beta, Kernel: ChromiumOS-4.14.33 Kubernetes: 1.10.0 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-67-10575-27-0" + }, + "status": "READY", + "archiveSizeBytes": "2939375040", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-67-10575-13-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2689207858083487341", + "creationTimestamp": "2018-05-04T15:36:51.191-07:00", + "name": "cos-beta-67-10575-27-0", + "description": "Google, Container-Optimized OS, 67-10575.27.0 beta, Kernel: ChromiumOS-4.14.33 Kubernetes: 1.10.0 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-67-10575-32-0" + }, + "status": "READY", + "archiveSizeBytes": "2940431040", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-67-10575-27-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8354910642298790228", + "creationTimestamp": "2018-05-10T03:32:28.237-07:00", + "name": "cos-beta-67-10575-32-0", + "description": "Google, Container-Optimized OS, 67-10575.32.0 beta, Kernel: ChromiumOS-4.14.33 Kubernetes: 1.10.0 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2940066240", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-67-10575-32-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7559612553151587910", + "creationTimestamp": "2017-01-20T15:09:29.508-08:00", + "name": "cos-dev-57-9196-0-0", + "description": "Google, Container-Optimized OS, dev 57-9196.0.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-57-9202-20-0" + }, + "status": "READY", + "archiveSizeBytes": "1106612616", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-57-9196-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "517872100647730236", + "creationTimestamp": "2017-02-09T11:28:19.880-08:00", + "name": "cos-dev-57-9202-20-0", + "description": "Google, Container-Optimized OS, dev 57-9202.20.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.2 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-57-9202-26-0" + }, + "status": "READY", + "archiveSizeBytes": "1071698172", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-57-9202-20-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3138755225923349397", + "creationTimestamp": "2017-02-13T16:55:22.563-08:00", + "name": "cos-dev-57-9202-26-0", + "description": "Google, Container-Optimized OS, dev 57-9202.26.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.2 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-58-9289-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1071536916", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-57-9202-26-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4193422984197371904", + "creationTimestamp": "2017-02-17T10:54:39.470-08:00", + "name": "cos-dev-58-9289-0-0", + "description": "Google, Container-Optimized OS, dev 58-9289.0.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.2 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-58-9312-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1071069948", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-58-9289-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3226496490043948493", + "creationTimestamp": "2017-02-24T11:01:54.521-08:00", + "name": "cos-dev-58-9312-0-0", + "description": "Google, Container-Optimized OS, dev 58-9312.0.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.2 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-58-9330-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1071192900", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-58-9312-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8701856738994034734", + "creationTimestamp": "2017-03-03T09:24:17.999-08:00", + "name": "cos-dev-58-9330-0-0", + "description": "Google, Container-Optimized OS, dev 58-9330.0.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.2 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-58-9334-2-0" + }, + "status": "READY", + "archiveSizeBytes": "1072377180", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-58-9330-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3736560204756842838", + "creationTimestamp": "2017-03-15T16:01:13.750-07:00", + "name": "cos-dev-58-9334-11-0", + "description": "Google, Container-Optimized OS, dev 58-9334.11.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.2 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-59-9394-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1071643008", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-58-9334-11-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "1180487646349966291", + "creationTimestamp": "2017-03-08T14:27:08.548-08:00", + "name": "cos-dev-58-9334-2-0", + "description": "Google, Container-Optimized OS, dev 58-9334.2.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.2 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-58-9334-11-0" + }, + "status": "READY", + "archiveSizeBytes": "1071446322", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-58-9334-2-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5564897318462305100", + "creationTimestamp": "2017-03-24T14:20:35.719-07:00", + "name": "cos-dev-59-9394-0-0", + "description": "Google, Container-Optimized OS, dev 59-9394.0.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-59-9415-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1080066426", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-59-9394-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6593273730786598049", + "creationTimestamp": "2017-03-31T11:39:10.126-07:00", + "name": "cos-dev-59-9415-0-0", + "description": "Google, Container-Optimized OS, dev 59-9415.0.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-59-9436-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1086680412", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-59-9415-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4124355116898388044", + "creationTimestamp": "2017-04-06T14:44:03.784-07:00", + "name": "cos-dev-59-9436-0-0", + "description": "Google, Container-Optimized OS, dev 59-9436.0.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-59-9452-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1087188810", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-59-9436-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "583011795158158937", + "creationTimestamp": "2017-04-12T11:23:50.331-07:00", + "name": "cos-dev-59-9452-0-0", + "description": "Google, Container-Optimized OS, dev 59-9452.0.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-59-9460-4-0" + }, + "status": "READY", + "archiveSizeBytes": "1268755348", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-59-9452-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5992567767858927332", + "creationTimestamp": "2017-04-27T14:52:11.738-07:00", + "name": "cos-dev-59-9460-11-0", + "description": "Google, Container-Optimized OS, dev 59-9460.11.0, Kernel: ChromiumOS-4.4.52 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-60-9504-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1184330637", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-59-9460-11-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2173560368119909055", + "creationTimestamp": "2017-05-03T12:49:36.623-07:00", + "name": "cos-dev-59-9460-20-0", + "description": "Google, Container-Optimized OS, dev 59-9460.20.0, Kernel: ChromiumOS-4.4.52 Kubernetes: 1.6.1 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-60-9504-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1230367138", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-59-9460-20-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7370311757913701443", + "creationTimestamp": "2017-04-20T11:49:16.960-07:00", + "name": "cos-dev-59-9460-4-0", + "description": "Google, Container-Optimized OS, dev 59-9460.4.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-59-9460-11-0" + }, + "status": "READY", + "archiveSizeBytes": "1182812729", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-59-9460-4-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3742050135054984904", + "creationTimestamp": "2017-05-03T10:49:27.848-07:00", + "name": "cos-dev-60-9504-0-0", + "description": "Google, Container-Optimized OS, dev 60-9504.0.0, Kernel: ChromiumOS-4.4.52 Kubernetes: 1.6.1 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-60-9540-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1214334093", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-60-9504-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "197753039752874117", + "creationTimestamp": "2017-05-11T16:40:26.963-07:00", + "name": "cos-dev-60-9540-0-0", + "description": "Google, Container-Optimized OS, 60-9540.0.0 dev, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.1 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-60-9565-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1396198888", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-60-9540-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4787115630649063036", + "creationTimestamp": "2017-05-22T08:49:39.645-07:00", + "name": "cos-dev-60-9565-0-0", + "description": "Google, Container-Optimized OS, 60-9565.0.0 dev, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.3 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-60-9588-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1486108312", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-60-9565-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7675999032954923192", + "creationTimestamp": "2017-05-26T13:55:51.702-07:00", + "name": "cos-dev-60-9588-0-0", + "description": "Google, Container-Optimized OS, 60-9588.0.0 dev, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.3 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-60-9592-2-0" + }, + "status": "READY", + "archiveSizeBytes": "1486626416", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-60-9588-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5898413099657845126", + "creationTimestamp": "2017-06-01T12:13:45.632-07:00", + "name": "cos-dev-60-9592-2-0", + "description": "Google, Container-Optimized OS, 60-9592.2.0 dev, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.3 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9626-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1485737600", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-60-9592-2-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7089029844298902806", + "creationTimestamp": "2017-06-08T11:14:17.613-07:00", + "name": "cos-dev-61-9626-0-0", + "description": "Google, Container-Optimized OS, 61-9626.0.0 dev, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9655-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1672865100", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9626-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3800432063600517851", + "creationTimestamp": "2017-06-16T15:31:16.855-07:00", + "name": "cos-dev-61-9655-0-0", + "description": "Google, Container-Optimized OS, 61-9655.0.0 dev, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9678-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1674059571", + "diskSizeGb": "11", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9655-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8077702423599915617", + "creationTimestamp": "2017-06-26T16:45:18.107-07:00", + "name": "cos-dev-61-9678-0-0", + "description": "Google, Container-Optimized OS, 61-9678.0.0 dev, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.4 Docker: 17.03.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9696-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1871225250", + "diskSizeGb": "11", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9678-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4561515073204971907", + "creationTimestamp": "2017-06-29T12:39:24.303-07:00", + "name": "cos-dev-61-9696-0-0", + "description": "Google, Container-Optimized OS, 61-9696.0.0 dev, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.4 Docker: 17.03.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9715-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1868616660", + "diskSizeGb": "11", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9696-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "459801321041615163", + "creationTimestamp": "2017-07-05T15:27:32.221-07:00", + "name": "cos-dev-61-9715-0-0", + "description": "Google, Container-Optimized OS, 61-9715.0.0 dev, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.4 Docker: 17.03.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9733-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1858804090", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9715-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6665250837159773248", + "creationTimestamp": "2017-07-11T13:53:03.102-07:00", + "name": "cos-dev-61-9733-0-0", + "description": "Google, Container-Optimized OS, 61-9733.0.0 dev, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.4 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9759-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1859323780", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9733-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4270620872435125855", + "creationTimestamp": "2017-07-20T11:04:32.532-07:00", + "name": "cos-dev-61-9759-0-0", + "description": "Google, Container-Optimized OS, 61-9759.0.0 dev, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.4 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9765-8-0" + }, + "status": "READY", + "archiveSizeBytes": "1859415980", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9759-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "294188662006454116", + "creationTimestamp": "2017-07-27T10:57:31.814-07:00", + "name": "cos-dev-61-9765-8-0", + "description": "Google, Container-Optimized OS, 61-9765.8.0 dev, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.4 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-62-9785-0-0" + }, + "status": "READY", + "archiveSizeBytes": "1859648900", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-61-9765-8-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5390943678332748929", + "creationTimestamp": "2017-08-04T15:51:26.644-07:00", + "name": "cos-dev-62-9785-0-0", + "description": "Google, Container-Optimized OS, 62-9785.0.0 dev, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.4 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-62-9831-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2045453377", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-62-9785-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "59280034239629711", + "creationTimestamp": "2017-08-11T11:28:48.040-07:00", + "name": "cos-dev-62-9831-0-0", + "description": "Google, Container-Optimized OS, 62-9831.0.0 dev, Kernel: ChromiumOS-4.4.79 Kubernetes: 1.7.2 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-62-9851-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2095209127", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-62-9831-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8534297437592606440", + "creationTimestamp": "2017-08-17T21:07:35.254-07:00", + "name": "cos-dev-62-9851-0-0", + "description": "Google, Container-Optimized OS, 62-9851.0.0 dev, Kernel: ChromiumOS-4.4.79 Kubernetes: 1.7.2 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-62-9874-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2093209965", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-62-9851-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7884262289190292847", + "creationTimestamp": "2017-08-24T22:20:01.027-07:00", + "name": "cos-dev-62-9874-0-0", + "description": "Google, Container-Optimized OS, 62-9874.0.0 dev, Kernel: ChromiumOS-4.4.79 Kubernetes: 1.7.2 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-62-9901-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2093204245", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-62-9874-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "32033985777663205", + "creationTimestamp": "2017-09-01T13:24:42.230-07:00", + "name": "cos-dev-62-9901-0-0", + "description": "Google, Container-Optimized OS, 62-9901.0.0 dev, Kernel: ChromiumOS-4.4.79 Kubernetes: 1.7.2 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-62-9901-8-0" + }, + "status": "READY", + "archiveSizeBytes": "2094062993", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-62-9901-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "880113778461459395", + "creationTimestamp": "2017-09-08T13:27:24.810-07:00", + "name": "cos-dev-62-9901-8-0", + "description": "Google, Container-Optimized OS, 62-9901.8.0 dev, Kernel: ChromiumOS-4.4.79 Kubernetes: 1.7.2 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-63-9956-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2283789312", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-62-9901-8-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8147605786587768641", + "creationTimestamp": "2017-10-05T13:44:30.499-07:00", + "name": "cos-dev-63-10004-0-0", + "description": "Google, Container-Optimized OS, 63-10004.0.0 dev, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-63-10022-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2296514304", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-63-10004-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4781470969878482243", + "creationTimestamp": "2017-10-11T17:13:32.605-07:00", + "name": "cos-dev-63-10022-0-0", + "description": "Google, Container-Optimized OS, 63-10022.0.0 dev, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-63-10032-4-0" + }, + "status": "READY", + "archiveSizeBytes": "2292446976", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-63-10022-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "854577157052360688", + "creationTimestamp": "2017-10-19T19:02:07.572-07:00", + "name": "cos-dev-63-10032-4-0", + "description": "Google, Container-Optimized OS, 63-10032.4.0 dev, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-64-10083-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2291233536", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-63-10032-4-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5140112292556269372", + "creationTimestamp": "2017-09-20T14:12:51.782-07:00", + "name": "cos-dev-63-9956-0-0", + "description": "Google, Container-Optimized OS, 63-9956.0.0 dev, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.6 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-63-9975-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2289651456", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-63-9956-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8919050941661978624", + "creationTimestamp": "2017-09-28T18:16:31.747-07:00", + "name": "cos-dev-63-9975-0-0", + "description": "Google, Container-Optimized OS, 63-9975.0.0 dev, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.6 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-63-10004-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2295730944", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-63-9975-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "682566491397467262", + "creationTimestamp": "2017-10-31T17:17:21.936-07:00", + "name": "cos-dev-64-10083-0-0", + "description": "Google, Container-Optimized OS, 64-10083.0.0 dev, Kernel: ChromiumOS-4.4.92 Kubernetes: 1.7.8 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-64-10112-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2487927104", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-64-10083-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8014709718761674322", + "creationTimestamp": "2017-11-09T11:13:01.445-08:00", + "name": "cos-dev-64-10112-0-0", + "description": "Google, Container-Optimized OS, 64-10112.0.0 dev, Kernel: ChromiumOS-4.4.96 Kubernetes: 1.7.8 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-64-10133-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2460025152", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-64-10112-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8377801538091070078", + "creationTimestamp": "2017-11-16T14:09:21.769-08:00", + "name": "cos-dev-64-10133-0-0", + "description": "Google, Container-Optimized OS, 64-10133.0.0 dev, Kernel: ChromiumOS-4.4.96 Kubernetes: 1.7.8 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-64-10151-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2470325312", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-64-10133-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8962063175071040161", + "creationTimestamp": "2017-11-22T10:05:02.868-08:00", + "name": "cos-dev-64-10151-0-0", + "description": "Google, Container-Optimized OS, 64-10151.0.0 dev, Kernel: ChromiumOS-4.4.96 Kubernetes: 1.8.2 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-64-10173-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2406970176", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-64-10151-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "993228553976617509", + "creationTimestamp": "2017-11-30T16:39:38.388-08:00", + "name": "cos-dev-64-10173-0-0", + "description": "Google, Container-Optimized OS, 64-10173.0.0 dev, Kernel: ChromiumOS-4.4.96 Kubernetes: 1.8.2 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-64-10176-7-0" + }, + "status": "READY", + "archiveSizeBytes": "2407349568", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-64-10173-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4107364226245619853", + "creationTimestamp": "2017-12-07T15:27:31.107-08:00", + "name": "cos-dev-64-10176-7-0", + "description": "Google, Container-Optimized OS, 64-10176.7.0 dev, Kernel: ChromiumOS-4.4.96 Kubernetes: 1.8.2 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-65-10280-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2407569216", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-64-10176-7-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8963242177956298776", + "creationTimestamp": "2018-01-05T14:40:55.211-08:00", + "name": "cos-dev-65-10280-0-0", + "description": "Google, Container-Optimized OS, 65-10280.0.0 dev, Kernel: ChromiumOS-4.4.107 Kubernetes: 1.8.6 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-65-10312-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2411150144", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-65-10280-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "499830970240939355", + "creationTimestamp": "2018-01-16T15:33:09.061-08:00", + "name": "cos-dev-65-10312-0-0", + "description": "Google, Container-Optimized OS, 65-10312.0.0 dev, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.6 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-65-10323-1-0" + }, + "status": "READY", + "archiveSizeBytes": "2783413440", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-65-10312-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "1731580474939468228", + "creationTimestamp": "2018-01-24T20:03:55.494-08:00", + "name": "cos-dev-65-10323-1-0", + "description": "Google, Container-Optimized OS, 65-10323.1.0 dev, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.6 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-66-10367-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2782672320", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-65-10323-1-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "9142828298338392330", + "creationTimestamp": "2018-02-02T14:36:22.382-08:00", + "name": "cos-dev-66-10367-0-0", + "description": "Google, Container-Optimized OS, 66-10367.0.0 dev, Kernel: ChromiumOS-4.4.113 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-66-10385-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2766824640", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-66-10367-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "1333155029113203033", + "creationTimestamp": "2018-02-08T15:05:27.289-08:00", + "name": "cos-dev-66-10385-0-0", + "description": "Google, Container-Optimized OS, 66-10385.0.0 dev, Kernel: ChromiumOS-4.4.114 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-66-10408-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2767919040", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-66-10385-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "9081089242958562692", + "creationTimestamp": "2018-02-16T12:13:32.232-08:00", + "name": "cos-dev-66-10408-0-0", + "description": "Google, Container-Optimized OS, 66-10408.0.0 dev, Kernel: ChromiumOS-4.14.18 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-66-10428-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2849618880", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-66-10408-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2417173683345676459", + "creationTimestamp": "2018-02-23T11:06:45.098-08:00", + "name": "cos-dev-66-10428-0-0", + "description": "Google, Container-Optimized OS, 66-10428.0.0 dev, Kernel: ChromiumOS-4.14.19 Kubernetes: 1.9.3 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-66-10452-8-0" + }, + "status": "READY", + "archiveSizeBytes": "2905007040", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-66-10428-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5462067189945314836", + "creationTimestamp": "2018-03-16T11:46:19.959-07:00", + "name": "cos-dev-66-10452-13-0", + "description": "Google, Container-Optimized OS, 66-10452.13.0 dev, Kernel: ChromiumOS-4.14.22 Kubernetes: 1.9.3 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-67-10505-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2904964800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-66-10452-13-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "435275245239890680", + "creationTimestamp": "2018-03-12T11:51:04.216-07:00", + "name": "cos-dev-66-10452-8-0", + "description": "Google, Container-Optimized OS, 66-10452.8.0 dev, Kernel: ChromiumOS-4.14.22 Kubernetes: 1.9.3 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-66-10452-13-0" + }, + "status": "READY", + "archiveSizeBytes": "2905444800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-66-10452-8-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5837300409376334739", + "creationTimestamp": "2018-03-22T09:44:45.564-07:00", + "name": "cos-dev-67-10505-0-0", + "description": "Google, Container-Optimized OS, 67-10505.0.0 dev, Kernel: ChromiumOS-4.14.27 Kubernetes: 1.9.3 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-67-10527-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2907145920", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-67-10505-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3144607148895375570", + "creationTimestamp": "2018-03-29T20:25:49.655-07:00", + "name": "cos-dev-67-10527-0-0", + "description": "Google, Container-Optimized OS, 67-10527.0.0 dev, Kernel: ChromiumOS-4.14.30 Kubernetes: 1.9.6 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-67-10550-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2910022080", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-67-10527-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "545527871778219675", + "creationTimestamp": "2018-04-06T13:28:37.558-07:00", + "name": "cos-dev-67-10550-0-0", + "description": "Google, Container-Optimized OS, 67-10550.0.0 dev, Kernel: ChromiumOS-4.14.31 Kubernetes: 1.9.6 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-67-10574-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2921496000", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-67-10550-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8499804383393647390", + "creationTimestamp": "2018-04-13T15:57:53.857-07:00", + "name": "cos-dev-67-10574-0-0", + "description": "Google, Container-Optimized OS, 67-10574.0.0 dev, Kernel: ChromiumOS-4.14.33 Kubernetes: 1.10.0 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-67-10575-8-0" + }, + "status": "READY", + "archiveSizeBytes": "2942581440", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-67-10574-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4997501700193853285", + "creationTimestamp": "2018-04-20T19:27:22.941-07:00", + "name": "cos-dev-67-10575-8-0", + "description": "Google, Container-Optimized OS, 67-10575.8.0 dev, Kernel: ChromiumOS-4.14.33 Kubernetes: 1.10.0 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-beta-67-10575-13-0" + }, + "status": "READY", + "archiveSizeBytes": "2943268800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-67-10575-8-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5694325629609901771", + "creationTimestamp": "2018-04-25T19:57:41.633-07:00", + "name": "cos-dev-68-10615-0-0", + "description": "Google, Container-Optimized OS, 68-10615.0.0 dev, Kernel: ChromiumOS-4.14.35 Kubernetes: 1.10.1 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-68-10644-0-0" + }, + "status": "READY", + "archiveSizeBytes": "2917871040", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-68-10615-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6671505817017081591", + "creationTimestamp": "2018-05-04T15:35:05.253-07:00", + "name": "cos-dev-68-10644-0-0", + "description": "Google, Container-Optimized OS, 68-10644.0.0 dev, Kernel: ChromiumOS-4.14.37 Kubernetes: 1.10.1 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-68-10658-0-0" + }, + "status": "READY", + "archiveSizeBytes": "3097859520", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-68-10644-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6921809617607041422", + "creationTimestamp": "2018-05-10T03:30:57.901-07:00", + "name": "cos-dev-68-10658-0-0", + "description": "Google, Container-Optimized OS, 68-10658.0.0 dev, Kernel: ChromiumOS-4.14.38 Kubernetes: 1.10.1 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "3093600960", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-dev-68-10658-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "658004449585733686", + "creationTimestamp": "2017-01-20T15:35:53.424-08:00", + "name": "cos-stable-54-8743-89-0", + "description": "Google, Container-Optimized OS, stable 54-8743.89.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.3.10 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-56-9000-84-1" + }, + "status": "READY", + "archiveSizeBytes": "1106571204", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-54-8743-89-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8871040212364370863", + "creationTimestamp": "2017-01-20T15:29:04.653-08:00", + "name": "cos-stable-55-8872-76-0", + "description": "Google, Container-Optimized OS, stable 55-8872.76.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-55-8872-77-0" + }, + "status": "READY", + "archiveSizeBytes": "1109663304", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-55-8872-76-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "1828308807825383356", + "creationTimestamp": "2017-01-27T16:09:55.651-08:00", + "name": "cos-stable-55-8872-77-0", + "description": "Google, Container-Optimized OS, stable 55-8872.77.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-55-8872-79-0" + }, + "status": "READY", + "archiveSizeBytes": "1107737004", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-55-8872-77-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7842170432852158754", + "creationTimestamp": "2017-02-03T11:19:42.078-08:00", + "name": "cos-stable-55-8872-79-0", + "description": "Google, Container-Optimized OS, stable 55-8872.79.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-57-9202-56-0" + }, + "status": "READY", + "archiveSizeBytes": "1107412032", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-55-8872-79-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2443843677941859765", + "creationTimestamp": "2017-04-03T14:15:06.287-07:00", + "name": "cos-stable-56-9000-103-0", + "description": "Google, Container-Optimized OS, stable 56-9000.103.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.9 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-56-9000-104-0" + }, + "status": "READY", + "archiveSizeBytes": "1091700330", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-56-9000-103-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4188889646220655541", + "creationTimestamp": "2017-04-06T11:13:46.082-07:00", + "name": "cos-stable-56-9000-104-0", + "description": "Google, Container-Optimized OS, stable 56-9000.104.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.9 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-58-9334-62-0" + }, + "status": "READY", + "archiveSizeBytes": "1104923832", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-56-9000-104-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6985011912527042285", + "creationTimestamp": "2017-02-16T19:03:30.195-08:00", + "name": "cos-stable-56-9000-84-1", + "description": "Google, Container-Optimized OS, stable 56-9000.84.1, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.8 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-56-9000-84-2" + }, + "status": "READY", + "archiveSizeBytes": "1105955778", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-56-9000-84-1", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6879363924727830038", + "creationTimestamp": "2017-02-17T17:52:57.813-08:00", + "name": "cos-stable-56-9000-84-2", + "description": "Google, Container-Optimized OS, stable 56-9000.84.2, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.8 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-56-9000-103-0" + }, + "status": "READY", + "archiveSizeBytes": "1104651864", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-56-9000-84-2", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7340045312359716840", + "creationTimestamp": "2017-03-24T11:44:23.881-07:00", + "name": "cos-stable-57-9202-56-0", + "description": "Google, Container-Optimized OS, stable 57-9202.56.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-56-9000-84-2" + }, + "status": "READY", + "archiveSizeBytes": "1071332814", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-57-9202-56-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "9218788767837140024", + "creationTimestamp": "2017-04-06T11:37:11.855-07:00", + "name": "cos-stable-57-9202-64-0", + "description": "Google, Container-Optimized OS, stable 57-9202.64.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-57-9202-74-0" + }, + "status": "READY", + "archiveSizeBytes": "1071615528", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-57-9202-64-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "83177112022713553", + "creationTimestamp": "2017-05-22T12:21:34.408-07:00", + "name": "cos-stable-57-9202-74-0", + "description": "Google, Container-Optimized OS, 57-9202.74.0 stable, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED" + }, + "status": "READY", + "archiveSizeBytes": "1435870976", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-57-9202-74-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "9196752497550001419", + "creationTimestamp": "2017-05-03T13:21:56.393-07:00", + "name": "cos-stable-58-9334-62-0", + "description": "Google, Container-Optimized OS, stable 58-9334.62.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-58-9334-72-0" + }, + "status": "READY", + "archiveSizeBytes": "1259666499", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-58-9334-62-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7787353640723824654", + "creationTimestamp": "2017-05-18T13:06:57.575-07:00", + "name": "cos-stable-58-9334-72-0", + "description": "Google, Container-Optimized OS, 58-9334.72.0 stable, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-58-9334-74-0" + }, + "status": "READY", + "archiveSizeBytes": "1439692640", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-58-9334-72-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3059634708515465692", + "creationTimestamp": "2017-05-26T13:59:31.409-07:00", + "name": "cos-stable-58-9334-74-0", + "description": "Google, Container-Optimized OS, 58-9334.74.0 stable, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED" + }, + "status": "READY", + "archiveSizeBytes": "1439817552", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-58-9334-74-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "31677967357976903", + "creationTimestamp": "2017-06-08T12:04:08.620-07:00", + "name": "cos-stable-59-9460-60-0", + "description": "Google, Container-Optimized OS, 59-9460.60.0 stable, Kernel: ChromiumOS-4.4.52 Kubernetes: 1.6.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-59-9460-64-0" + }, + "status": "READY", + "archiveSizeBytes": "1581564519", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-59-9460-60-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2388425242502080922", + "creationTimestamp": "2017-06-16T10:37:57.681-07:00", + "name": "cos-stable-59-9460-64-0", + "description": "Google, Container-Optimized OS, 59-9460.64.0 stable, Kernel: ChromiumOS-4.4.52 Kubernetes: 1.6.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-59-9460-73-0" + }, + "status": "READY", + "archiveSizeBytes": "1581831882", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-59-9460-64-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5918260895154502335", + "creationTimestamp": "2017-07-14T15:23:12.394-07:00", + "name": "cos-stable-59-9460-73-0", + "description": "Google, Container-Optimized OS, 59-9460.73.0 stable, Kernel: ChromiumOS-4.4.52 Kubernetes: 1.6.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-61-9765-66-0" + }, + "status": "READY", + "archiveSizeBytes": "1757783040", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-59-9460-73-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "641175264503164109", + "creationTimestamp": "2017-10-06T11:57:38.852-07:00", + "name": "cos-stable-60-9592-100-0", + "description": "Google, Container-Optimized OS, 60-9592.100.0 stable, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED" + }, + "status": "READY", + "archiveSizeBytes": "2230026240", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-60-9592-100-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "519616548876202621", + "creationTimestamp": "2017-08-03T13:50:26.420-07:00", + "name": "cos-stable-60-9592-74-0", + "description": "Google, Container-Optimized OS, 60-9592.74.0 stable, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-60-9592-76-0" + }, + "status": "READY", + "archiveSizeBytes": "2042532118", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-60-9592-74-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8603608842425139208", + "creationTimestamp": "2017-08-04T11:37:27.644-07:00", + "name": "cos-stable-60-9592-76-0", + "description": "Google, Container-Optimized OS, 60-9592.76.0 stable, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-60-9592-82-0" + }, + "status": "READY", + "archiveSizeBytes": "2042937622", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-60-9592-76-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6546635071772931590", + "creationTimestamp": "2017-08-11T12:43:37.731-07:00", + "name": "cos-stable-60-9592-82-0", + "description": "Google, Container-Optimized OS, 60-9592.82.0 stable, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-60-9592-84-0" + }, + "status": "READY", + "archiveSizeBytes": "2042551907", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-60-9592-82-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3886135554705450142", + "creationTimestamp": "2017-08-17T20:09:37.655-07:00", + "name": "cos-stable-60-9592-84-0", + "description": "Google, Container-Optimized OS, 60-9592.84.0 stable, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-60-9592-90-0" + }, + "status": "READY", + "archiveSizeBytes": "2042439212", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-60-9592-84-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8029143927062030510", + "creationTimestamp": "2017-09-01T14:50:58.030-07:00", + "name": "cos-stable-60-9592-90-0", + "description": "Google, Container-Optimized OS, 60-9592.90.0 stable, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-60-9592-95-0" + }, + "status": "READY", + "archiveSizeBytes": "2042974329", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-60-9592-90-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6697813020039315314", + "creationTimestamp": "2017-09-18T14:58:53.344-07:00", + "name": "cos-stable-60-9592-95-0", + "description": "Google, Container-Optimized OS, 60-9592.95.0 stable, Kernel: ChromiumOS-4.4.64 Kubernetes: 1.6.4 Docker: 1.13.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-60-9592-100-0" + }, + "status": "READY", + "archiveSizeBytes": "2230450176", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-60-9592-95-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4806394093866175925", + "creationTimestamp": "2017-09-18T18:31:06.749-07:00", + "name": "cos-stable-61-9765-66-0", + "description": "Google, Container-Optimized OS, 61-9765.66.0 stable, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.10 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-61-9765-79-0" + }, + "status": "READY", + "archiveSizeBytes": "2233534464", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-61-9765-66-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2179492156039395494", + "creationTimestamp": "2017-10-06T11:07:05.576-07:00", + "name": "cos-stable-61-9765-79-0", + "description": "Google, Container-Optimized OS, 61-9765.79.0 stable, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.10 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-61-9765-89-0" + }, + "status": "READY", + "archiveSizeBytes": "2232563712", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-61-9765-79-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6640460079716391518", + "creationTimestamp": "2017-11-10T09:41:05.755-08:00", + "name": "cos-stable-61-9765-89-0", + "description": "Google, Container-Optimized OS, 61-9765.89.0 stable, Kernel: ChromiumOS-4.4.70 Kubernetes: 1.6.10 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED" + }, + "status": "READY", + "archiveSizeBytes": "2418417664", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-61-9765-89-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "3140707091012185970", + "creationTimestamp": "2017-10-31T21:46:21.379-07:00", + "name": "cos-stable-62-9901-59-0", + "description": "Google, Container-Optimized OS, 62-9901.59.0 stable, Kernel: ChromiumOS-4.4.79 Kubernetes: 1.7.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-62-9901-75-0" + }, + "status": "READY", + "archiveSizeBytes": "2475479552", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-62-9901-59-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4088984884367412345", + "creationTimestamp": "2017-11-09T16:28:06.706-08:00", + "name": "cos-stable-62-9901-75-0", + "description": "Google, Container-Optimized OS, 62-9901.75.0 stable, Kernel: ChromiumOS-4.4.79 Kubernetes: 1.7.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-62-9901-78-0" + }, + "status": "READY", + "archiveSizeBytes": "2473619200", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-62-9901-75-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4801788364166432850", + "creationTimestamp": "2017-11-20T12:10:37.450-08:00", + "name": "cos-stable-62-9901-78-0", + "description": "Google, Container-Optimized OS, 62-9901.78.0 stable, Kernel: ChromiumOS-4.4.79 Kubernetes: 1.7.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-62-9901-79-0" + }, + "status": "READY", + "archiveSizeBytes": "2475865600", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-62-9901-78-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "791990146247981160", + "creationTimestamp": "2017-11-22T10:48:39.671-08:00", + "name": "cos-stable-62-9901-79-0", + "description": "Google, Container-Optimized OS, 62-9901.79.0 stable, Kernel: ChromiumOS-4.4.79 Kubernetes: 1.7.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-62-9901-80-0" + }, + "status": "READY", + "archiveSizeBytes": "2475705856", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-62-9901-79-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "9163764103533690231", + "creationTimestamp": "2017-12-15T13:50:16.367-08:00", + "name": "cos-stable-62-9901-80-0", + "description": "Google, Container-Optimized OS, 62-9901.80.0 stable, Kernel: ChromiumOS-4.4.79 Kubernetes: 1.7.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-64-10176-62-0" + }, + "status": "READY", + "archiveSizeBytes": "2476441344", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-62-9901-80-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7007392579059524666", + "creationTimestamp": "2017-11-30T15:57:09.946-08:00", + "name": "cos-stable-63-10032-60-0", + "description": "Google, Container-Optimized OS, 63-10032.60.0 stable, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.8 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-63-10032-62-0" + }, + "status": "READY", + "archiveSizeBytes": "2482772032", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-63-10032-60-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2435117902094220812", + "creationTimestamp": "2017-12-06T15:44:35.953-08:00", + "name": "cos-stable-63-10032-62-0", + "description": "Google, Container-Optimized OS, 63-10032.62.0 stable, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.8 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-63-10032-71-0" + }, + "status": "READY", + "archiveSizeBytes": "2481973312", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-63-10032-62-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "9166721016717077767", + "creationTimestamp": "2017-12-08T10:03:20.576-08:00", + "name": "cos-stable-63-10032-71-0", + "description": "Google, Container-Optimized OS, 63-10032.71.0 stable, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.8 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-63-10032-88-0" + }, + "status": "READY", + "archiveSizeBytes": "2480076352", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-63-10032-71-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "9037695461801066238", + "creationTimestamp": "2018-01-19T10:59:30.098-08:00", + "name": "cos-stable-63-10032-88-0", + "description": "Google, Container-Optimized OS, 63-10032.88.0 stable, Kernel: ChromiumOS-4.4.86 Kubernetes: 1.7.8 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-65-10323-62-0" + }, + "status": "READY", + "archiveSizeBytes": "2862244800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-63-10032-88-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "5241841702474960879", + "creationTimestamp": "2018-02-02T15:15:12.894-08:00", + "name": "cos-stable-64-10176-62-0", + "description": "Google, Container-Optimized OS, 64-10176.62.0 stable, Kernel: ChromiumOS-4.4.96 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-66-10452-74-0" + }, + "status": "READY", + "archiveSizeBytes": "2776416960", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-64-10176-62-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "2376777823707615829", + "creationTimestamp": "2018-03-22T10:49:47.350-07:00", + "name": "cos-stable-65-10323-62-0", + "description": "Google, Container-Optimized OS, 65-10323.62.0 stable, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-65-10323-64-0" + }, + "status": "READY", + "archiveSizeBytes": "2781416640", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-65-10323-62-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "8621797311612195239", + "creationTimestamp": "2018-03-29T20:30:17.151-07:00", + "name": "cos-stable-65-10323-64-0", + "description": "Google, Container-Optimized OS, 65-10323.64.0 stable, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-65-10323-69-0" + }, + "status": "READY", + "archiveSizeBytes": "2780967360", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-65-10323-64-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4093602184659867015", + "creationTimestamp": "2018-04-06T10:16:25.152-07:00", + "name": "cos-stable-65-10323-69-0", + "description": "Google, Container-Optimized OS, 65-10323.69.0 stable, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-65-10323-75-0" + }, + "status": "READY", + "archiveSizeBytes": "2780905920", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-65-10323-69-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "471654352683474409", + "creationTimestamp": "2018-04-20T19:33:43.133-07:00", + "name": "cos-stable-65-10323-75-0", + "description": "Google, Container-Optimized OS, 65-10323.75.0 stable, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-65-10323-83-0" + }, + "status": "READY", + "archiveSizeBytes": "2781938880", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-65-10323-75-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "6820119927501137952", + "creationTimestamp": "2018-05-01T18:39:28.252-07:00", + "name": "cos-stable-65-10323-83-0", + "description": "Google, Container-Optimized OS, 65-10323.83.0 stable, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-65-10323-85-0" + }, + "status": "READY", + "archiveSizeBytes": "2781508800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-65-10323-83-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "776749897173540501", + "creationTimestamp": "2018-05-10T03:35:39.123-07:00", + "name": "cos-stable-65-10323-85-0", + "description": "Google, Container-Optimized OS, 65-10323.85.0 stable, Kernel: ChromiumOS-4.4.111 Kubernetes: 1.8.7 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2780836800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-65-10323-85-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "7429201798231817750", + "creationTimestamp": "2018-04-25T20:01:14.126-07:00", + "name": "cos-stable-66-10452-74-0", + "description": "Google, Container-Optimized OS, 66-10452.74.0 stable, Kernel: ChromiumOS-4.14.22 Kubernetes: 1.9.3 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-66-10452-81-0" + }, + "status": "READY", + "archiveSizeBytes": "2904400320", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-66-10452-74-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "130298624101099652", + "creationTimestamp": "2018-05-01T18:37:48.355-07:00", + "name": "cos-stable-66-10452-81-0", + "description": "Google, Container-Optimized OS, 66-10452.81.0 stable, Kernel: ChromiumOS-4.14.22 Kubernetes: 1.9.3 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-66-10452-86-0" + }, + "status": "READY", + "archiveSizeBytes": "2904772800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-66-10452-81-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + }, + { + "kind": "compute#image", + "id": "4643872969420545789", + "creationTimestamp": "2018-05-10T03:33:55.484-07:00", + "name": "cos-stable-66-10452-86-0", + "description": "Google, Container-Optimized OS, 66-10452.86.0 stable, Kernel: ChromiumOS-4.14.22 Kubernetes: 1.9.3 Docker: 17.03.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "2905010880", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos" + ], + "family": "cos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-66-10452-86-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001010" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:01 GMT + recorded_at: Fri, 11 May 2018 14:32:52 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/asia-east1/targetPools + uri: https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:52 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:01 GMT + - Fri, 11 May 2018 14:32:52 GMT Date: - - Fri, 02 Jun 2017 19:26:01 GMT + - Fri, 11 May 2018 14:32:52 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/IuPal361mAkPuZ3jiwchnkc0O28"' + - '"lHh-DbIA1QgQebHnN9BpnpPxArM=/sRDAUghB0f65HSzWa8UIKa88-HY="' Vary: - Origin - X-Origin @@ -6797,52 +20101,2614 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAJ2OQQ6CMBAA730FqVdh0+CJN3DwCwXXulK7TXeBg/HvIjHx - 7n0yM09T2YnSxXaVHfmRZ8WD+hJQz8yxJ1F73BDagVz4jqMKjLRQrHUesHau - bd0JCgbiJOCFfI1e1MFPI7tDMF57StPHdFPN0gGs69oE5hDRZ5JmO4DvBSwO - /u+Zl3kDqIboatoAAAA= + encoding: UTF-8 + string: | + { + "kind": "compute#imageList", + "id": "projects/coreos-cloud/global/images", + "items": [ + { + "kind": "compute#image", + "id": "4695747588770162260", + "creationTimestamp": "2017-05-25T15:20:43.546-07:00", + "name": "coreos-alpha-1122-0-0-v20160727", + "description": "CoreOS, CoreOS alpha, 1122.0.0, amd64-usr published on 2016-07-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED" + }, + "status": "READY", + "archiveSizeBytes": "317622899", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1122-0-0-v20160727", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "2770527991526613100", + "creationTimestamp": "2017-08-17T11:20:51.127-07:00", + "name": "coreos-alpha-1506-0-0-v20170817", + "description": "CoreOS, CoreOS alpha, 1506.0.0, amd64-usr published on 2017-08-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1520-0-0-v20170830" + }, + "status": "READY", + "archiveSizeBytes": "423172275", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1506-0-0-v20170817", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "100760484785641629", + "creationTimestamp": "2017-08-30T09:23:14.513-07:00", + "name": "coreos-alpha-1520-0-0-v20170830", + "description": "CoreOS, CoreOS alpha, 1520.0.0, amd64-usr published on 2017-08-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1520-1-0-v20170906" + }, + "status": "READY", + "archiveSizeBytes": "427216805", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1520-0-0-v20170830", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "8321248140378079276", + "creationTimestamp": "2017-09-06T11:30:27.324-07:00", + "name": "coreos-alpha-1520-1-0-v20170906", + "description": "CoreOS, CoreOS alpha, 1520.1.0, amd64-usr published on 2017-09-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1535-0-0-v20170914" + }, + "status": "READY", + "archiveSizeBytes": "427229568", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1520-1-0-v20170906", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "4476739239175215301", + "creationTimestamp": "2017-09-14T13:27:22.146-07:00", + "name": "coreos-alpha-1535-0-0-v20170914", + "description": "CoreOS, CoreOS alpha, 1535.0.0, amd64-usr published on 2017-09-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1535-1-0-v20170916" + }, + "status": "READY", + "archiveSizeBytes": "428319104", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1535-0-0-v20170914", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "1635790407785894373", + "creationTimestamp": "2017-09-15T17:23:38.970-07:00", + "name": "coreos-alpha-1535-1-0-v20170916", + "description": "CoreOS, CoreOS alpha, 1535.1.0, amd64-usr published on 2017-09-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1535-2-0-v20170921" + }, + "status": "READY", + "archiveSizeBytes": "427828352", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1535-1-0-v20170916", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "1972836437337207295", + "creationTimestamp": "2017-09-21T07:39:12.787-07:00", + "name": "coreos-alpha-1535-2-0-v20170921", + "description": "CoreOS, CoreOS alpha, 1535.2.0, amd64-usr published on 2017-09-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1548-0-0-v20170927" + }, + "status": "READY", + "archiveSizeBytes": "422514304", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1535-2-0-v20170921", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "6105978479544006724", + "creationTimestamp": "2017-09-27T08:41:31.739-07:00", + "name": "coreos-alpha-1548-0-0-v20170927", + "description": "CoreOS, CoreOS alpha, 1548.0.0, amd64-usr published on 2017-09-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1562-0-0-v20171011" + }, + "status": "READY", + "archiveSizeBytes": "451743360", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1548-0-0-v20170927", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "3179613202588892810", + "creationTimestamp": "2017-10-11T09:01:42.129-07:00", + "name": "coreos-alpha-1562-0-0-v20171011", + "description": "CoreOS, CoreOS alpha, 1562.0.0, amd64-usr published on 2017-10-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1562-1-0-v20171012" + }, + "status": "READY", + "archiveSizeBytes": "453697920", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1562-0-0-v20171011", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "3232831081496605863", + "creationTimestamp": "2017-10-12T13:02:16.316-07:00", + "name": "coreos-alpha-1562-1-0-v20171012", + "description": "CoreOS, CoreOS alpha, 1562.1.0, amd64-usr published on 2017-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1562-2-0-v20171024" + }, + "status": "READY", + "archiveSizeBytes": "453563008", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1562-1-0-v20171012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "7478658153421372369", + "creationTimestamp": "2017-10-24T15:57:02.745-07:00", + "name": "coreos-alpha-1562-2-0-v20171024", + "description": "CoreOS, CoreOS alpha, 1562.2.0, amd64-usr published on 2017-10-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1576-1-0-v20171026" + }, + "status": "READY", + "archiveSizeBytes": "453484416", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1562-2-0-v20171024", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "5055980793828978493", + "creationTimestamp": "2017-10-26T09:48:19.060-07:00", + "name": "coreos-alpha-1576-1-0-v20171026", + "description": "CoreOS, CoreOS alpha, 1576.1.0, amd64-usr published on 2017-10-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1590-0-0-v20171108" + }, + "status": "READY", + "archiveSizeBytes": "456086144", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1576-1-0-v20171026", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "6543910469033142748", + "creationTimestamp": "2017-11-08T15:45:55.480-08:00", + "name": "coreos-alpha-1590-0-0-v20171108", + "description": "CoreOS, CoreOS alpha, 1590.0.0, amd64-usr published on 2017-11-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1590-1-0-v20171130" + }, + "status": "READY", + "archiveSizeBytes": "458468480", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1590-0-0-v20171108", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "3467853208008601799", + "creationTimestamp": "2017-11-30T15:03:04.804-08:00", + "name": "coreos-alpha-1590-1-0-v20171130", + "description": "CoreOS, CoreOS alpha, 1590.1.0, amd64-usr published on 2017-11-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1618-0-0-v20171206" + }, + "status": "READY", + "archiveSizeBytes": "458486912", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1590-1-0-v20171130", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "6189009010600263596", + "creationTimestamp": "2017-12-06T15:46:11.589-08:00", + "name": "coreos-alpha-1618-0-0-v20171206", + "description": "CoreOS, CoreOS alpha, 1618.0.0, amd64-usr published on 2017-12-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1632-0-0-v20171220" + }, + "status": "READY", + "archiveSizeBytes": "482225536", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1618-0-0-v20171206", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "630091229469038974", + "creationTimestamp": "2017-12-20T14:43:30.490-08:00", + "name": "coreos-alpha-1632-0-0-v20171220", + "description": "CoreOS, CoreOS alpha, 1632.0.0, amd64-usr published on 2017-12-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1649-0-0-v20180105" + }, + "status": "READY", + "archiveSizeBytes": "488080768", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1632-0-0-v20171220", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "8709304624582112304", + "creationTimestamp": "2018-01-05T06:25:35.924-08:00", + "name": "coreos-alpha-1649-0-0-v20180105", + "description": "CoreOS, CoreOS alpha, 1649.0.0, amd64-usr published on 2018-01-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1662-0-0-v20180119" + }, + "status": "READY", + "archiveSizeBytes": "494688384", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1649-0-0-v20180105", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "1878736731789626317", + "creationTimestamp": "2018-01-18T16:00:34.395-08:00", + "name": "coreos-alpha-1662-0-0-v20180119", + "description": "CoreOS, CoreOS alpha, 1662.0.0, amd64-usr published on 2018-01-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1675-0-1-v20180202" + }, + "status": "READY", + "archiveSizeBytes": "498773632", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1662-0-0-v20180119", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "445782719534315558", + "creationTimestamp": "2018-02-01T22:35:53.842-08:00", + "name": "coreos-alpha-1675-0-1-v20180202", + "description": "CoreOS, CoreOS alpha, 1675.0.1, amd64-usr published on 2018-02-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1688-0-0-v20180215" + }, + "status": "READY", + "archiveSizeBytes": "494000768", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1675-0-1-v20180202", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "1400946350520549592", + "creationTimestamp": "2018-02-15T13:40:07.885-08:00", + "name": "coreos-alpha-1688-0-0-v20180215", + "description": "CoreOS, CoreOS alpha, 1688.0.0, amd64-usr published on 2018-02-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1702-0-0-v20180228" + }, + "status": "READY", + "archiveSizeBytes": "494911360", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1688-0-0-v20180215", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "2648908368923289430", + "creationTimestamp": "2018-02-28T08:32:57.335-08:00", + "name": "coreos-alpha-1702-0-0-v20180228", + "description": "CoreOS, CoreOS alpha, 1702.0.0, amd64-usr published on 2018-02-28", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1702-1-0-v20180303" + }, + "status": "READY", + "archiveSizeBytes": "500136832", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1702-0-0-v20180228", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "4918486452405779667", + "creationTimestamp": "2018-03-02T18:02:37.081-08:00", + "name": "coreos-alpha-1702-1-0-v20180303", + "description": "CoreOS, CoreOS alpha, 1702.1.0, amd64-usr published on 2018-03-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1722-0-0-v20180320" + }, + "status": "READY", + "archiveSizeBytes": "500540800", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1702-1-0-v20180303", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "1002738414721487060", + "creationTimestamp": "2018-03-20T13:25:31.985-07:00", + "name": "coreos-alpha-1722-0-0-v20180320", + "description": "CoreOS, CoreOS alpha, 1722.0.0, amd64-usr published on 2018-03-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1729-0-0-v20180327" + }, + "status": "READY", + "archiveSizeBytes": "500610944", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1722-0-0-v20180320", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "9019939757749637293", + "creationTimestamp": "2018-03-27T13:49:06.788-07:00", + "name": "coreos-alpha-1729-0-0-v20180327", + "description": "CoreOS, CoreOS alpha, 1729.0.0, amd64-usr published on 2018-03-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1745-0-0-v20180412" + }, + "status": "READY", + "archiveSizeBytes": "503223936", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1729-0-0-v20180327", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "919297198848617083", + "creationTimestamp": "2018-04-12T10:17:09.205-07:00", + "name": "coreos-alpha-1745-0-0-v20180412", + "description": "CoreOS, CoreOS alpha, 1745.0.0, amd64-usr published on 2018-04-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1758-0-0-v20180425" + }, + "status": "READY", + "archiveSizeBytes": "503146624", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1745-0-0-v20180412", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "8192496698812887728", + "creationTimestamp": "2018-04-25T11:43:44.129-07:00", + "name": "coreos-alpha-1758-0-0-v20180425", + "description": "CoreOS, CoreOS alpha, 1758.0.0, amd64-usr published on 2018-04-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1772-0-0-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "499835264", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1758-0-0-v20180425", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "9180804145758503784", + "creationTimestamp": "2018-05-09T11:27:20.438-07:00", + "name": "coreos-alpha-1772-0-0-v20180509", + "description": "CoreOS, CoreOS alpha, 1772.0.0, amd64-usr published on 2018-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "500900992", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-alpha" + ], + "family": "coreos-alpha", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-alpha-1772-0-0-v20180509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000210" + ] + }, + { + "kind": "compute#image", + "id": "2740598821171107469", + "creationTimestamp": "2017-07-19T11:43:46.931-07:00", + "name": "coreos-beta-1465-2-0-v20170719", + "description": "CoreOS, CoreOS beta, 1465.2.0, amd64-usr published on 2017-07-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1465-3-0-v20170802" + }, + "status": "READY", + "archiveSizeBytes": "393477793", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1465-2-0-v20170719", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "7766808750554105481", + "creationTimestamp": "2017-08-02T09:05:58.670-07:00", + "name": "coreos-beta-1465-3-0-v20170802", + "description": "CoreOS, CoreOS beta, 1465.3.0, amd64-usr published on 2017-08-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1465-4-0-v20170810" + }, + "status": "READY", + "archiveSizeBytes": "392527258", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1465-3-0-v20170802", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "3908238070589253137", + "creationTimestamp": "2017-08-10T15:06:54.850-07:00", + "name": "coreos-beta-1465-4-0-v20170810", + "description": "CoreOS, CoreOS beta, 1465.4.0, amd64-usr published on 2017-08-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1465-5-0-v20170814" + }, + "status": "READY", + "archiveSizeBytes": "392992922", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1465-4-0-v20170810", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "8936475241727410374", + "creationTimestamp": "2017-08-14T12:46:49.798-07:00", + "name": "coreos-beta-1465-5-0-v20170814", + "description": "CoreOS, CoreOS beta, 1465.5.0, amd64-usr published on 2017-08-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1492-5-0-v20170817" + }, + "status": "READY", + "archiveSizeBytes": "393997471", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1465-5-0-v20170814", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "5759478647156658938", + "creationTimestamp": "2017-08-17T12:18:45.273-07:00", + "name": "coreos-beta-1492-5-0-v20170817", + "description": "CoreOS, CoreOS beta, 1492.5.0, amd64-usr published on 2017-08-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1492-6-0-v20170906" + }, + "status": "READY", + "archiveSizeBytes": "420365736", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1492-5-0-v20170817", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "5148360541019700052", + "creationTimestamp": "2017-09-06T12:00:12.009-07:00", + "name": "coreos-beta-1492-6-0-v20170906", + "description": "CoreOS, CoreOS beta, 1492.6.0, amd64-usr published on 2017-09-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1520-2-0-v20170914" + }, + "status": "READY", + "archiveSizeBytes": "419903872", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1492-6-0-v20170906", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "2985095052869986620", + "creationTimestamp": "2017-09-14T12:26:11.266-07:00", + "name": "coreos-beta-1520-2-0-v20170914", + "description": "CoreOS, CoreOS beta, 1520.2.0, amd64-usr published on 2017-09-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1520-3-0-v20170916" + }, + "status": "READY", + "archiveSizeBytes": "417439360", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1520-2-0-v20170914", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "4047503918464357695", + "creationTimestamp": "2017-09-15T17:09:52.641-07:00", + "name": "coreos-beta-1520-3-0-v20170916", + "description": "CoreOS, CoreOS beta, 1520.3.0, amd64-usr published on 2017-09-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1520-4-0-v20170921" + }, + "status": "READY", + "archiveSizeBytes": "423404160", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1520-3-0-v20170916", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "2671230722763550742", + "creationTimestamp": "2017-09-21T07:38:49.339-07:00", + "name": "coreos-beta-1520-4-0-v20170921", + "description": "CoreOS, CoreOS beta, 1520.4.0, amd64-usr published on 2017-09-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1548-1-0-v20171011" + }, + "status": "READY", + "archiveSizeBytes": "422685824", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1520-4-0-v20170921", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "2918441957920603826", + "creationTimestamp": "2017-10-11T09:01:33.540-07:00", + "name": "coreos-beta-1548-1-0-v20171011", + "description": "CoreOS, CoreOS beta, 1548.1.0, amd64-usr published on 2017-10-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1548-2-0-v20171012" + }, + "status": "READY", + "archiveSizeBytes": "451512448", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1548-1-0-v20171011", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "3594322033371149421", + "creationTimestamp": "2017-10-12T13:03:14.220-07:00", + "name": "coreos-beta-1548-2-0-v20171012", + "description": "CoreOS, CoreOS beta, 1548.2.0, amd64-usr published on 2017-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1548-3-0-v20171024" + }, + "status": "READY", + "archiveSizeBytes": "451914112", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1548-2-0-v20171012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "4714156054819273685", + "creationTimestamp": "2017-10-24T15:56:58.919-07:00", + "name": "coreos-beta-1548-3-0-v20171024", + "description": "CoreOS, CoreOS beta, 1548.3.0, amd64-usr published on 2017-10-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1548-4-0-v20171026" + }, + "status": "READY", + "archiveSizeBytes": "452039296", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1548-3-0-v20171024", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "6907442423771671542", + "creationTimestamp": "2017-10-26T10:02:17.577-07:00", + "name": "coreos-beta-1548-4-0-v20171026", + "description": "CoreOS, CoreOS beta, 1548.4.0, amd64-usr published on 2017-10-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1576-2-0-v20171108" + }, + "status": "READY", + "archiveSizeBytes": "451889792", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1548-4-0-v20171026", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "2251002717225756799", + "creationTimestamp": "2017-11-08T15:43:12.682-08:00", + "name": "coreos-beta-1576-2-0-v20171108", + "description": "CoreOS, CoreOS beta, 1576.2.0, amd64-usr published on 2017-11-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1576-3-0-v20171130" + }, + "status": "READY", + "archiveSizeBytes": "456789120", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1576-2-0-v20171108", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "4132334307111678144", + "creationTimestamp": "2017-11-30T15:03:11.516-08:00", + "name": "coreos-beta-1576-3-0-v20171130", + "description": "CoreOS, CoreOS beta, 1576.3.0, amd64-usr published on 2017-11-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1590-2-0-v20171206" + }, + "status": "READY", + "archiveSizeBytes": "456731520", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1576-3-0-v20171130", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "2451483157716090803", + "creationTimestamp": "2017-12-06T15:46:36.659-08:00", + "name": "coreos-beta-1590-2-0-v20171206", + "description": "CoreOS, CoreOS beta, 1590.2.0, amd64-usr published on 2017-12-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1632-1-0-v20180105" + }, + "status": "READY", + "archiveSizeBytes": "452351616", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1590-2-0-v20171206", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "6978416779771130901", + "creationTimestamp": "2018-01-05T06:26:02.481-08:00", + "name": "coreos-beta-1632-1-0-v20180105", + "description": "CoreOS, CoreOS beta, 1632.1.0, amd64-usr published on 2018-01-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1662-1-0-v20180202" + }, + "status": "READY", + "archiveSizeBytes": "470918272", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1632-1-0-v20180105", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "8131917288918595614", + "creationTimestamp": "2018-02-01T22:36:33.737-08:00", + "name": "coreos-beta-1662-1-0-v20180202", + "description": "CoreOS, CoreOS beta, 1662.1.0, amd64-usr published on 2018-02-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1662-2-0-v20180215" + }, + "status": "READY", + "archiveSizeBytes": "498765696", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1662-1-0-v20180202", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "7792028300249429634", + "creationTimestamp": "2018-02-15T09:50:37.967-08:00", + "name": "coreos-beta-1662-2-0-v20180215", + "description": "CoreOS, CoreOS beta, 1662.2.0, amd64-usr published on 2018-02-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1688-1-1-v20180228" + }, + "status": "READY", + "archiveSizeBytes": "498826624", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1662-2-0-v20180215", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "2188060482596464500", + "creationTimestamp": "2018-02-28T08:32:27.949-08:00", + "name": "coreos-beta-1688-1-1-v20180228", + "description": "CoreOS, CoreOS beta, 1688.1.1, amd64-usr published on 2018-02-28", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1688-2-0-v20180303" + }, + "status": "READY", + "archiveSizeBytes": "490161536", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1688-1-1-v20180228", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "5771887585013513402", + "creationTimestamp": "2018-03-02T18:03:02.329-08:00", + "name": "coreos-beta-1688-2-0-v20180303", + "description": "CoreOS, CoreOS beta, 1688.2.0, amd64-usr published on 2018-03-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1688-3-0-v20180309" + }, + "status": "READY", + "archiveSizeBytes": "490466688", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1688-2-0-v20180303", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "6827356011088538947", + "creationTimestamp": "2018-03-09T10:34:21.565-08:00", + "name": "coreos-beta-1688-3-0-v20180309", + "description": "CoreOS, CoreOS beta, 1688.3.0, amd64-usr published on 2018-03-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1722-1-0-v20180327" + }, + "status": "READY", + "archiveSizeBytes": "490827904", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1688-3-0-v20180309", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "2472774483121213624", + "creationTimestamp": "2018-03-27T13:49:28.262-07:00", + "name": "coreos-beta-1722-1-0-v20180327", + "description": "CoreOS, CoreOS beta, 1722.1.0, amd64-usr published on 2018-03-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1722-2-0-v20180330" + }, + "status": "READY", + "archiveSizeBytes": "495563648", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1722-1-0-v20180327", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "3085627721683832964", + "creationTimestamp": "2018-03-29T20:26:35.742-07:00", + "name": "coreos-beta-1722-2-0-v20180330", + "description": "CoreOS, CoreOS beta, 1722.2.0, amd64-usr published on 2018-03-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1745-1-0-v20180425" + }, + "status": "READY", + "archiveSizeBytes": "495675776", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1722-2-0-v20180330", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "2381543394868294279", + "creationTimestamp": "2018-04-25T11:43:53.132-07:00", + "name": "coreos-beta-1745-1-0-v20180425", + "description": "CoreOS, CoreOS beta, 1745.1.0, amd64-usr published on 2018-04-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1745-2-0-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "498382976", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1745-1-0-v20180425", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "3337285583731851879", + "creationTimestamp": "2018-05-09T11:23:05.565-07:00", + "name": "coreos-beta-1745-2-0-v20180509", + "description": "CoreOS, CoreOS beta, 1745.2.0, amd64-usr published on 2018-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "498357376", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-beta" + ], + "family": "coreos-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-beta-1745-2-0-v20180509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000209" + ] + }, + { + "kind": "compute#image", + "id": "6607481358041768333", + "creationTimestamp": "2017-02-28T12:36:50.692-08:00", + "name": "coreos-stable-1298-5-0-v20170228", + "description": "CoreOS, CoreOS stable, 1298.5.0, amd64-usr published on 2017-02-28", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1298-6-0-v20170315" + }, + "status": "READY", + "archiveSizeBytes": "370570987", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1298-5-0-v20170228", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "6464305049821786041", + "creationTimestamp": "2017-03-15T12:09:10.664-07:00", + "name": "coreos-stable-1298-6-0-v20170315", + "description": "CoreOS, CoreOS stable, 1298.6.0, amd64-usr published on 2017-03-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1298-7-0-v20170401" + }, + "status": "READY", + "archiveSizeBytes": "370942193", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1298-6-0-v20170315", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "6014865507167191078", + "creationTimestamp": "2017-03-31T18:13:45.043-07:00", + "name": "coreos-stable-1298-7-0-v20170401", + "description": "CoreOS, CoreOS stable, 1298.7.0, amd64-usr published on 2017-04-01", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1353-6-0-v20170425" + }, + "status": "READY", + "archiveSizeBytes": "365081311", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1298-7-0-v20170401", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "3827656126096345475", + "creationTimestamp": "2017-04-25T13:54:05.060-07:00", + "name": "coreos-stable-1353-6-0-v20170425", + "description": "CoreOS, CoreOS stable, 1353.6.0, amd64-usr published on 2017-04-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1353-7-0-v20170427" + }, + "status": "READY", + "archiveSizeBytes": "374909574", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1353-6-0-v20170425", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "8122013459453638362", + "creationTimestamp": "2017-04-26T18:24:05.794-07:00", + "name": "coreos-stable-1353-7-0-v20170427", + "description": "CoreOS, CoreOS stable, 1353.7.0, amd64-usr published on 2017-04-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1353-8-0-v20170531" + }, + "status": "READY", + "archiveSizeBytes": "374887805", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1353-7-0-v20170427", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "3555354078563511800", + "creationTimestamp": "2017-05-30T17:49:27.320-07:00", + "name": "coreos-stable-1353-8-0-v20170531", + "description": "CoreOS, CoreOS stable, 1353.8.0, amd64-usr published on 2017-05-31", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1409-2-0-v20170620" + }, + "status": "READY", + "archiveSizeBytes": "374924926", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1353-8-0-v20170531", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "3615899944778780014", + "creationTimestamp": "2017-06-20T12:12:02.025-07:00", + "name": "coreos-stable-1409-2-0-v20170620", + "description": "CoreOS, CoreOS stable, 1409.2.0, amd64-usr published on 2017-06-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1409-5-0-v20170623" + }, + "status": "READY", + "archiveSizeBytes": "381081255", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1409-2-0-v20170620", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "5675333718078771517", + "creationTimestamp": "2017-06-22T18:33:06.951-07:00", + "name": "coreos-stable-1409-5-0-v20170623", + "description": "CoreOS, CoreOS stable, 1409.5.0, amd64-usr published on 2017-06-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1409-6-0-v20170706" + }, + "status": "READY", + "archiveSizeBytes": "382278050", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1409-5-0-v20170623", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "2558058712479776125", + "creationTimestamp": "2017-07-06T11:38:10.081-07:00", + "name": "coreos-stable-1409-6-0-v20170706", + "description": "CoreOS, CoreOS stable, 1409.6.0, amd64-usr published on 2017-07-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1409-7-0-v20170719" + }, + "status": "READY", + "archiveSizeBytes": "381072802", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1409-6-0-v20170706", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "1650233566770107587", + "creationTimestamp": "2017-07-19T11:51:24.316-07:00", + "name": "coreos-stable-1409-7-0-v20170719", + "description": "CoreOS, CoreOS stable, 1409.7.0, amd64-usr published on 2017-07-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1409-8-0-v20170810" + }, + "status": "READY", + "archiveSizeBytes": "381212066", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1409-7-0-v20170719", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "5125114056300125467", + "creationTimestamp": "2017-08-10T15:53:40.530-07:00", + "name": "coreos-stable-1409-8-0-v20170810", + "description": "CoreOS, CoreOS stable, 1409.8.0, amd64-usr published on 2017-08-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1409-9-0-v20170814" + }, + "status": "READY", + "archiveSizeBytes": "381134504", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1409-8-0-v20170810", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "4439862469585552288", + "creationTimestamp": "2017-08-14T12:43:11.593-07:00", + "name": "coreos-stable-1409-9-0-v20170814", + "description": "CoreOS, CoreOS stable, 1409.9.0, amd64-usr published on 2017-08-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1465-6-0-v20170817" + }, + "status": "READY", + "archiveSizeBytes": "377216673", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1409-9-0-v20170814", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "5563715618352948145", + "creationTimestamp": "2017-08-17T11:15:58.673-07:00", + "name": "coreos-stable-1465-6-0-v20170817", + "description": "CoreOS, CoreOS stable, 1465.6.0, amd64-usr published on 2017-08-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1465-7-0-v20170906" + }, + "status": "READY", + "archiveSizeBytes": "392304041", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1465-6-0-v20170817", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "1127922138626259762", + "creationTimestamp": "2017-09-06T12:00:46.001-07:00", + "name": "coreos-stable-1465-7-0-v20170906", + "description": "CoreOS, CoreOS stable, 1465.7.0, amd64-usr published on 2017-09-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1465-8-0-v20170921" + }, + "status": "READY", + "archiveSizeBytes": "393191296", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1465-7-0-v20170906", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "6610501905484247127", + "creationTimestamp": "2017-09-21T07:37:44.728-07:00", + "name": "coreos-stable-1465-8-0-v20170921", + "description": "CoreOS, CoreOS stable, 1465.8.0, amd64-usr published on 2017-09-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1520-5-0-v20171011" + }, + "status": "READY", + "archiveSizeBytes": "393742208", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1465-8-0-v20170921", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "9017650089265725093", + "creationTimestamp": "2017-10-11T09:01:14.919-07:00", + "name": "coreos-stable-1520-5-0-v20171011", + "description": "CoreOS, CoreOS stable, 1520.5.0, amd64-usr published on 2017-10-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1520-6-0-v20171012" + }, + "status": "READY", + "archiveSizeBytes": "450138752", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1520-5-0-v20171011", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "5454100008489088098", + "creationTimestamp": "2017-10-12T13:03:25.293-07:00", + "name": "coreos-stable-1520-6-0-v20171012", + "description": "CoreOS, CoreOS stable, 1520.6.0, amd64-usr published on 2017-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1520-7-0-v20171024" + }, + "status": "READY", + "archiveSizeBytes": "445453184", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1520-6-0-v20171012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "3864173587330137059", + "creationTimestamp": "2017-10-24T15:56:12.318-07:00", + "name": "coreos-stable-1520-7-0-v20171024", + "description": "CoreOS, CoreOS stable, 1520.7.0, amd64-usr published on 2017-10-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1520-8-0-v20171026" + }, + "status": "READY", + "archiveSizeBytes": "450432128", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1520-7-0-v20171024", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "7740776361070930075", + "creationTimestamp": "2017-10-26T10:08:04.957-07:00", + "name": "coreos-stable-1520-8-0-v20171026", + "description": "CoreOS, CoreOS stable, 1520.8.0, amd64-usr published on 2017-10-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1520-9-0-v20171130" + }, + "status": "READY", + "archiveSizeBytes": "450802304", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1520-8-0-v20171026", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "1658408401309085820", + "creationTimestamp": "2017-11-30T15:04:52.091-08:00", + "name": "coreos-stable-1520-9-0-v20171130", + "description": "CoreOS, CoreOS stable, 1520.9.0, amd64-usr published on 2017-11-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1576-4-0-v20171206" + }, + "status": "READY", + "archiveSizeBytes": "450855040", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1520-9-0-v20171130", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "4251595120740482952", + "creationTimestamp": "2017-12-06T15:46:47.244-08:00", + "name": "coreos-stable-1576-4-0-v20171206", + "description": "CoreOS, CoreOS stable, 1576.4.0, amd64-usr published on 2017-12-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1576-5-0-v20180105" + }, + "status": "READY", + "archiveSizeBytes": "456747904", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1576-4-0-v20171206", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "1814109280851360884", + "creationTimestamp": "2018-01-05T10:23:23.614-08:00", + "name": "coreos-stable-1576-5-0-v20180105", + "description": "CoreOS, CoreOS stable, 1576.5.0, amd64-usr published on 2018-01-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1632-2-1-v20180202" + }, + "status": "READY", + "archiveSizeBytes": "464213632", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1576-5-0-v20180105", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "5105184407281056219", + "creationTimestamp": "2018-02-01T22:37:40.795-08:00", + "name": "coreos-stable-1632-2-1-v20180202", + "description": "CoreOS, CoreOS stable, 1632.2.1, amd64-usr published on 2018-02-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1632-3-0-v20180215" + }, + "status": "READY", + "archiveSizeBytes": "470865536", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1632-2-1-v20180202", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "6217468005063358099", + "creationTimestamp": "2018-02-15T09:50:52.929-08:00", + "name": "coreos-stable-1632-3-0-v20180215", + "description": "CoreOS, CoreOS stable, 1632.3.0, amd64-usr published on 2018-02-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1688-4-0-v20180327" + }, + "status": "READY", + "archiveSizeBytes": "470601088", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1632-3-0-v20180215", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "6755635228386463923", + "creationTimestamp": "2018-03-27T13:49:33.153-07:00", + "name": "coreos-stable-1688-4-0-v20180327", + "description": "CoreOS, CoreOS stable, 1688.4.0, amd64-usr published on 2018-03-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1688-5-3-v20180403" + }, + "status": "READY", + "archiveSizeBytes": "490665344", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1688-4-0-v20180327", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + }, + { + "kind": "compute#image", + "id": "6311648245503125894", + "creationTimestamp": "2018-04-03T12:35:06.199-07:00", + "name": "coreos-stable-1688-5-3-v20180403", + "description": "CoreOS, CoreOS stable, 1688.5.3, amd64-usr published on 2018-04-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "485972096", + "diskSizeGb": "9", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/licenses/coreos-stable" + ], + "family": "coreos-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images/coreos-stable-1688-5-3-v20180403", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000208" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/coreos-cloud/global/images" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:01 GMT + recorded_at: Fri, 11 May 2018 14:32:52 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/asia-northeast1/targetPools + uri: https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:52 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:01 GMT + - Fri, 11 May 2018 14:32:52 GMT Date: - - Fri, 02 Jun 2017 19:26:01 GMT + - Fri, 11 May 2018 14:32:52 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/JOXOD8abbOKO7LAt5YZo8kZjvvU"' + - '"PbvbFiPWGvMdA_Z1ZsOqAlPgR70=/7hpHOCYWylAFBrrpbmOSMrWX_XY="' Vary: - Origin - X-Origin @@ -6859,52 +22725,4221 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOQQ6CMBAA77yC1KuwafDEGzj4hVrXslK7TXeBg/HvIjHx - Ad4nM/OsajNRupq+Np4feVY8qCsB9cwcBxI1xw2hHciF7+hVwNNCsdH5go21 - XWdPUDAQJwEn5JrERUd0ohZ+LtlFgvE2UJo+ulE1Sw+wrmsbmENEl0nabQO+ - K7BY+DNavao3RVGX3eQAAAA= + encoding: UTF-8 + string: | + { + "kind": "compute#imageList", + "id": "projects/debian-cloud/global/images", + "items": [ + { + "kind": "compute#image", + "id": "12371298324486102144", + "creationTimestamp": "2013-12-02T17:49:01.206-08:00", + "name": "backports-debian-7-wheezy-v20131127", + "description": "Debian GNU/Linux 7.2 (wheezy) with backports kernel built on 2013-11-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20131127", + "deprecated": "1970-01-01", + "obsolete": "1970-01-02", + "deleted": "1970-01-03" + }, + "status": "READY", + "archiveSizeBytes": "365056004", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20131127", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4359542978415320596", + "creationTimestamp": "2014-03-19T14:59:48.212-07:00", + "name": "backports-debian-7-wheezy-v20140318", + "description": "Debian GNU/Linux 7.4 (wheezy) amd64 with backports kernel built on 2014-03-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140331" + }, + "status": "READY", + "archiveSizeBytes": "363791902", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140318", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "15835408046770346721", + "creationTimestamp": "2014-04-02T13:22:10.344-07:00", + "name": "backports-debian-7-wheezy-v20140331", + "description": "Debian GNU/Linux 7.4 (wheezy) amd64 with backports kernel and SSH packages built on 2014-03-31", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140408" + }, + "status": "READY", + "archiveSizeBytes": "442398181", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140331", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "11347897274148340677", + "creationTimestamp": "2014-04-09T10:34:36.072-07:00", + "name": "backports-debian-7-wheezy-v20140408", + "description": "Debian GNU/Linux 7.4 (wheezy) amd64 with backports kernel and SSH packages built on 2014-04-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140415" + }, + "status": "READY", + "archiveSizeBytes": "460293681", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140408", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1961353585117201359", + "creationTimestamp": "2014-04-22T12:05:21.799-07:00", + "name": "backports-debian-7-wheezy-v20140415", + "description": "Debian GNU/Linux 7.4 (wheezy) amd64 with backports kernel and SSH packages built on 2014-04-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140522" + }, + "status": "READY", + "archiveSizeBytes": "1305361944", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140415", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9086860851120583043", + "creationTimestamp": "2014-06-03T10:22:40.439-07:00", + "name": "backports-debian-7-wheezy-v20140522", + "description": "Debian GNU/Linux 7.5 (wheezy) amd64 with backports kernel and SSH packages built on 2014-05-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140606" + }, + "status": "READY", + "archiveSizeBytes": "1291544127", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140522", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3162880700849242534", + "creationTimestamp": "2014-06-05T11:15:06.942-07:00", + "name": "backports-debian-7-wheezy-v20140605", + "description": "Debian GNU/Linux 7.5 (wheezy) amd64 with backports kernel and SSH packages built on 2014-06-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140606" + }, + "status": "READY", + "archiveSizeBytes": "1342678611", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140605", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "10385475893990329896", + "creationTimestamp": "2014-06-06T13:16:42.088-07:00", + "name": "backports-debian-7-wheezy-v20140606", + "description": "Debian GNU/Linux 7.5 (wheezy) amd64 with backports kernel and SSH packages built on 2014-06-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140619" + }, + "status": "READY", + "archiveSizeBytes": "1356729999", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140606", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "15689321734978914353", + "creationTimestamp": "2014-06-24T13:29:10.490-07:00", + "name": "backports-debian-7-wheezy-v20140619", + "description": "Debian GNU/Linux 7.5 (wheezy) amd64 with backports kernel and SSH packages built on 2014-06-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140718" + }, + "status": "READY", + "archiveSizeBytes": "1281043596", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140619", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "12577251946941921963", + "creationTimestamp": "2014-07-24T09:10:05.365-07:00", + "name": "backports-debian-7-wheezy-v20140718", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 with backports kernel and SSH packages built on 2014-07-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140807" + }, + "status": "READY", + "archiveSizeBytes": "1335987075", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140718", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9641224716767925811", + "creationTimestamp": "2014-08-12T14:53:28.332-07:00", + "name": "backports-debian-7-wheezy-v20140807", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 with backports kernel and SSH packages built on 2014-08-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140814" + }, + "status": "READY", + "archiveSizeBytes": "1209324744", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140807", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "11459649951041372765", + "creationTimestamp": "2014-08-19T10:40:36.823-07:00", + "name": "backports-debian-7-wheezy-v20140814", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 with backports kernel and SSH packages built on 2014-08-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140828" + }, + "status": "READY", + "archiveSizeBytes": "1190245623", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140814", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9336619521590788178", + "creationTimestamp": "2014-09-03T11:10:24.882-07:00", + "name": "backports-debian-7-wheezy-v20140828", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 with backports kernel and SSH packages built on 2014-08-28", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140924" + }, + "status": "READY", + "archiveSizeBytes": "1070554068", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140828", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "14073025228653544826", + "creationTimestamp": "2014-09-04T22:13:09.998-07:00", + "name": "backports-debian-7-wheezy-v20140904", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 with backports kernel and SSH packages built on 2014-09-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140924" + }, + "status": "READY", + "archiveSizeBytes": "1239132348", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140904", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "16385270757948354447", + "creationTimestamp": "2014-09-24T19:51:20.032-07:00", + "name": "backports-debian-7-wheezy-v20140924", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 with backports kernel and SSH packages built on 2014-09-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140926" + }, + "status": "READY", + "archiveSizeBytes": "1203259062", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140924", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "13663113692859485221", + "creationTimestamp": "2014-09-29T11:14:29.692-07:00", + "name": "backports-debian-7-wheezy-v20140926", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 with backports kernel and SSH packages built on 2014-09-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20141017" + }, + "status": "READY", + "archiveSizeBytes": "1238666616", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140926", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4641598822087681912", + "creationTimestamp": "2014-10-16T14:56:09.044-07:00", + "name": "backports-debian-7-wheezy-v20141007", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 with backports kernel and SSH packages built on 2014-10-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140926" + }, + "status": "READY", + "archiveSizeBytes": "1252446456", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20141007", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9271964771033932356", + "creationTimestamp": "2014-10-17T16:37:44.976-07:00", + "name": "backports-debian-7-wheezy-v20141017", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 with backports kernel and SSH packages built on 2014-10-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20141021" + }, + "status": "READY", + "archiveSizeBytes": "1273822608", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20141017", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3138884683593411438", + "creationTimestamp": "2014-10-22T18:40:02.653-07:00", + "name": "backports-debian-7-wheezy-v20141021", + "description": "Debian GNU/Linux 7.7 (wheezy) amd64 with backports kernel and SSH packages built on 2014-10-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20141108" + }, + "status": "READY", + "archiveSizeBytes": "1139031198", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20141021", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "10277628920867735363", + "creationTimestamp": "2014-11-10T14:28:20.135-08:00", + "name": "backports-debian-7-wheezy-v20141108", + "description": "Debian GNU/Linux 7.7 (wheezy) amd64 with backports kernel and SSH packages built on 2014-11-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20141205" + }, + "status": "READY", + "archiveSizeBytes": "1131029430", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20141108", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9274825058458986510", + "creationTimestamp": "2014-12-08T17:02:29.329-08:00", + "name": "backports-debian-7-wheezy-v20141205", + "description": "Debian GNU/Linux 7.7 (wheezy) amd64 with backports kernel and SSH packages built on 2014-12-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20141218" + }, + "status": "READY", + "archiveSizeBytes": "1122039000", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20141205", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6717992157407587236", + "creationTimestamp": "2015-01-05T15:01:10.870-08:00", + "name": "backports-debian-7-wheezy-v20141218", + "description": "Debian GNU/Linux 7.7 (wheezy) amd64 with backports kernel and SSH packages built on 2014-12-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150112" + }, + "status": "READY", + "archiveSizeBytes": "1143994923", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20141218", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "16628854319842924343", + "creationTimestamp": "2015-01-14T17:55:47.446-08:00", + "name": "backports-debian-7-wheezy-v20150112", + "description": "Debian GNU/Linux 7.8 (wheezy) amd64 with backports kernel and SSH packages built on 2015-01-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150127" + }, + "status": "READY", + "archiveSizeBytes": "1119519033", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150112", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "14037113982339508175", + "creationTimestamp": "2015-01-28T19:15:45.988-08:00", + "name": "backports-debian-7-wheezy-v20150127", + "description": "Debian GNU/Linux 7.8 (wheezy) amd64 with backports kernel and SSH packages built on 2015-01-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150226" + }, + "status": "READY", + "archiveSizeBytes": "1295995302", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150127", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2965711238452736943", + "creationTimestamp": "2015-03-03T16:09:36.213-08:00", + "name": "backports-debian-7-wheezy-v20150226", + "description": "Debian GNU/Linux 7.8 (wheezy) amd64 with backports kernel and SSH packages built on 2015-02-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150309" + }, + "status": "READY", + "archiveSizeBytes": "1356261891", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150226", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6460993183425948471", + "creationTimestamp": "2015-03-10T13:36:40.915-07:00", + "name": "backports-debian-7-wheezy-v20150309", + "description": "Debian GNU/Linux 7.8 (wheezy) amd64 with backports kernel and SSH packages built on 2015-03-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150320" + }, + "status": "READY", + "archiveSizeBytes": "1318872987", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150309", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4994608086359327071", + "creationTimestamp": "2015-03-23T14:03:44.811-07:00", + "name": "backports-debian-7-wheezy-v20150320", + "description": "Debian GNU/Linux 7.8 (wheezy) amd64 with backports kernel and SSH packages built on 2015-03-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150325" + }, + "status": "READY", + "archiveSizeBytes": "1389272883", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150320", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7544984212461851824", + "creationTimestamp": "2015-03-27T12:07:11.913-07:00", + "name": "backports-debian-7-wheezy-v20150325", + "description": "Debian GNU/Linux 7.8 (wheezy) amd64 with backports kernel and SSH packages built on 2015-03-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150423" + }, + "status": "READY", + "archiveSizeBytes": "1387192242", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150325", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1889522253783053129", + "creationTimestamp": "2015-04-30T13:16:38.170-07:00", + "name": "backports-debian-7-wheezy-v20150423", + "description": "Debian, Debian GNU/Linux, 7.8 (wheezy), amd64 with backports kernel and SSH packages built on 2015-04-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150526" + }, + "status": "READY", + "archiveSizeBytes": "1358990565", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150423", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5753203158848080823", + "creationTimestamp": "2015-05-27T14:21:28.130-07:00", + "name": "backports-debian-7-wheezy-v20150526", + "description": "Debian, Debian GNU/Linux, 7.8 (wheezy), amd64 with backports kernel and SSH packages built on 2015-05-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150603" + }, + "status": "READY", + "archiveSizeBytes": "1384053417", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150526", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6006574657008475633", + "creationTimestamp": "2015-06-09T10:32:14.969-07:00", + "name": "backports-debian-7-wheezy-v20150603", + "description": "Debian, Debian GNU/Linux, 7.8 (wheezy), amd64 with backports kernel and SSH packages built on 2015-06-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150710" + }, + "status": "READY", + "archiveSizeBytes": "1360539363", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150603", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1197078422191972037", + "creationTimestamp": "2015-07-13T13:31:38.182-07:00", + "name": "backports-debian-7-wheezy-v20150710", + "description": "Debian, Debian GNU/Linux, 7.8 (wheezy), amd64 with backports kernel and SSH packages built on 2015-07-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150818" + }, + "status": "READY", + "archiveSizeBytes": "1261754100", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150710", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7535910746152383977", + "creationTimestamp": "2015-08-24T14:22:14.171-07:00", + "name": "backports-debian-7-wheezy-v20150818", + "description": "Debian, Debian GNU/Linux, 7.8 (wheezy), amd64 with backports kernel and SSH packages built on 2015-08-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150915" + }, + "status": "READY", + "archiveSizeBytes": "1442143461", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150818", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3401005641342815245", + "creationTimestamp": "2015-09-17T14:38:42.647-07:00", + "name": "backports-debian-7-wheezy-v20150915", + "description": "Debian, Debian GNU/Linux, 7.8 (wheezy), amd64 with backports kernel and SSH packages built on 2015-09-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150929" + }, + "status": "READY", + "archiveSizeBytes": "1256923194", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150915", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7585886195288739612", + "creationTimestamp": "2015-10-06T13:41:23.276-07:00", + "name": "backports-debian-7-wheezy-v20150929", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 with backports kernel and SSH packages built on 2015-09-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20151104" + }, + "status": "READY", + "archiveSizeBytes": "1583064135", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150929", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4449750871603711676", + "creationTimestamp": "2015-11-09T15:46:27.099-08:00", + "name": "backports-debian-7-wheezy-v20151104", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 with backports kernel and SSH packages built on 2015-11-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160119" + }, + "status": "READY", + "archiveSizeBytes": "1480897599", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20151104", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7648948259489230607", + "creationTimestamp": "2016-01-19T20:49:36.814-08:00", + "name": "backports-debian-7-wheezy-v20160119", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 with backports kernel and SSH packages built on 2016-01-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160126" + }, + "status": "READY", + "archiveSizeBytes": "1498524407", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160119", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2491060005802145168", + "creationTimestamp": "2016-01-27T14:58:07.676-08:00", + "name": "backports-debian-7-wheezy-v20160126", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 with backports kernel and SSH packages built on 2016-01-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160211" + }, + "status": "READY", + "archiveSizeBytes": "1675391087", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160126", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3674715707975585260", + "creationTimestamp": "2016-02-16T11:05:39.993-08:00", + "name": "backports-debian-7-wheezy-v20160211", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 with backports kernel and SSH packages built on 2016-02-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160216" + }, + "status": "READY", + "archiveSizeBytes": "1982568807", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160211", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7741880438266361700", + "creationTimestamp": "2016-02-17T11:27:07.237-08:00", + "name": "backports-debian-7-wheezy-v20160216", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 with backports kernel and SSH packages built on 2016-02-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160219" + }, + "status": "READY", + "archiveSizeBytes": "1912882543", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160216", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7668540066345967114", + "creationTimestamp": "2016-02-22T11:26:29.608-08:00", + "name": "backports-debian-7-wheezy-v20160219", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 with backports kernel and SSH packages built on 2016-02-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160301" + }, + "status": "READY", + "archiveSizeBytes": "1696732331", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160219", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4013328056259955836", + "creationTimestamp": "2016-03-01T20:56:51.757-08:00", + "name": "backports-debian-7-wheezy-v20160301", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 with backports kernel and SSH packages built on 2016-03-01", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160329" + }, + "status": "READY", + "archiveSizeBytes": "1565559463", + "diskSizeGb": "10", + "family": "debian-7-backports", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160301", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7457957948670719133", + "creationTimestamp": "2016-03-30T10:18:42.417-07:00", + "name": "backports-debian-7-wheezy-v20160329", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 with backports kernel and SSH packages built on 2016-03-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160418" + }, + "status": "READY", + "archiveSizeBytes": "1739732939", + "diskSizeGb": "10", + "family": "debian-7-backports", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160329", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7058315489524307902", + "creationTimestamp": "2016-04-19T10:22:25.729-07:00", + "name": "backports-debian-7-wheezy-v20160418", + "description": "Debian, Debian GNU/Linux, 7 (wheezy), amd64 with backports kernel and SSH packages built on 2016-04-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160511" + }, + "status": "READY", + "archiveSizeBytes": "1772012135", + "diskSizeGb": "10", + "family": "debian-7-backports", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160418", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2630114025917735934", + "creationTimestamp": "2016-05-12T12:44:17.156-07:00", + "name": "backports-debian-7-wheezy-v20160511", + "description": "Debian, Debian GNU/Linux, 7 (wheezy), amd64 with backports kernel and SSH packages built on 2016-05-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160531" + }, + "status": "READY", + "archiveSizeBytes": "1912948399", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-7-wheezy" + ], + "family": "debian-7-backports", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160511", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3850059921112670284", + "creationTimestamp": "2016-05-31T16:30:43.074-07:00", + "name": "backports-debian-7-wheezy-v20160531", + "description": "Debian, Debian GNU/Linux, 7 (wheezy), amd64 with backports kernel and SSH packages built on 2016-05-31", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160531" + }, + "status": "READY", + "archiveSizeBytes": "1859318483", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-7-wheezy" + ], + "family": "debian-7-backports", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20160531", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7592539559190150798", + "creationTimestamp": "2015-09-30T17:37:53.975-07:00", + "name": "beta-accounts-backports-debian-7-wheezy-v20150930", + "description": "Accounts Beta Debian GNU/Linux, 7.9 (wheezy), amd64 with backports kernel and SSH packages and beta accounts packages built on 2015-09-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/backports-debian-7-wheezy-v20150929" + }, + "status": "READY", + "archiveSizeBytes": "1615885899", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/beta-accounts-backports-debian-7-wheezy-v20150930", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7972131539064536625", + "creationTimestamp": "2015-09-30T17:39:58.947-07:00", + "name": "beta-accounts-debian-8-jessie-v20150930", + "description": "Accounts Beta Debian GNU/Linux, 8.1 (jessie), amd64 with beta accounts package built on 2015-09-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20150929" + }, + "status": "READY", + "archiveSizeBytes": "2132426387", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/beta-accounts-debian-8-jessie-v20150930", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4144404110215178298", + "creationTimestamp": "2015-07-15T14:55:33.331-07:00", + "name": "beta-debian-8-jessie-v20150710", + "description": "Debian, Debian GNU/Linux, 8.1 (jessie), amd64 built on 2015-07-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20150710" + }, + "status": "READY", + "archiveSizeBytes": "1502722716", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/beta-debian-8-jessie-v20150710", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2768298251193329825", + "creationTimestamp": "2013-10-28T13:52:08.233-07:00", + "name": "debian-7-wheezy-v20131014", + "description": "Debian GNU/Linux 7.2 (wheezy) built on 2013-10-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20131120", + "deprecated": "2013-12-02T12:00:00Z" + }, + "status": "READY", + "archiveSizeBytes": "405683884", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20131014", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "17312518942796567788", + "creationTimestamp": "2013-11-25T15:17:00.436-08:00", + "name": "debian-7-wheezy-v20131120", + "description": "Debian GNU/Linux 7.2 (wheezy) built on 2013-11-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140318" + }, + "status": "READY", + "archiveSizeBytes": "341857472", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20131120", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "17164003659829548087", + "creationTimestamp": "2014-03-19T15:00:34.317-07:00", + "name": "debian-7-wheezy-v20140318", + "description": "Debian GNU/Linux 7.4 (wheezy) amd64 built on 2014-03-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140408" + }, + "status": "READY", + "archiveSizeBytes": "357365652", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140318", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5009074516965108296", + "creationTimestamp": "2014-04-09T10:32:46.862-07:00", + "name": "debian-7-wheezy-v20140408", + "description": "Debian GNU/Linux 7.4 (wheezy) amd64 built on 2014-04-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140415" + }, + "status": "READY", + "archiveSizeBytes": "387525228", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140408", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "17362901286054305778", + "creationTimestamp": "2014-04-22T12:05:19.303-07:00", + "name": "debian-7-wheezy-v20140415", + "description": "Debian GNU/Linux 7.4 (wheezy) amd64 built on 2014-04-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140522" + }, + "status": "READY", + "archiveSizeBytes": "1151530332", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140415", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5741466168076626639", + "creationTimestamp": "2014-06-03T10:22:05.775-07:00", + "name": "debian-7-wheezy-v20140522", + "description": "Debian GNU/Linux 7.5 (wheezy) amd64 built on 2014-05-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140606" + }, + "status": "READY", + "archiveSizeBytes": "1129290498", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140522", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "15036511115619902874", + "creationTimestamp": "2014-06-05T11:10:23.037-07:00", + "name": "debian-7-wheezy-v20140605", + "description": "Debian GNU/Linux 7.5 (wheezy) amd64 built on 2014-06-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140606" + }, + "status": "READY", + "archiveSizeBytes": "1064425338", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140605", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "16280724435269635469", + "creationTimestamp": "2014-06-06T13:16:42.897-07:00", + "name": "debian-7-wheezy-v20140606", + "description": "Debian GNU/Linux 7.5 (wheezy) amd64 built on 2014-06-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140619" + }, + "status": "READY", + "archiveSizeBytes": "1108438332", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140606", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "15990799122418306096", + "creationTimestamp": "2014-06-24T13:28:42.697-07:00", + "name": "debian-7-wheezy-v20140619", + "description": "Debian GNU/Linux 7.5 (wheezy) amd64 built on 2014-06-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140718" + }, + "status": "READY", + "archiveSizeBytes": "1158839577", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140619", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "11535450626613878896", + "creationTimestamp": "2014-07-24T09:06:16.694-07:00", + "name": "debian-7-wheezy-v20140718", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 built on 2014-07-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140807" + }, + "status": "READY", + "archiveSizeBytes": "1195066695", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140718", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "10742104427832349917", + "creationTimestamp": "2014-08-12T14:49:09.830-07:00", + "name": "debian-7-wheezy-v20140807", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 built on 2014-08-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140814" + }, + "status": "READY", + "archiveSizeBytes": "1087755615", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140807", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2959733271341868389", + "creationTimestamp": "2014-08-19T10:33:39.671-07:00", + "name": "debian-7-wheezy-v20140814", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 built on 2014-08-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140828" + }, + "status": "READY", + "archiveSizeBytes": "1066646022", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140814", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2776791438715640104", + "creationTimestamp": "2014-09-03T11:05:13.720-07:00", + "name": "debian-7-wheezy-v20140828", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 built on 2014-08-28", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140924" + }, + "status": "READY", + "archiveSizeBytes": "1076013963", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140828", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5134900341565421794", + "creationTimestamp": "2014-09-24T19:24:45.167-07:00", + "name": "debian-7-wheezy-v20140924", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 built on 2014-09-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140926" + }, + "status": "READY", + "archiveSizeBytes": "1112472177", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140924", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "10136214168276676512", + "creationTimestamp": "2014-09-29T09:33:11.644-07:00", + "name": "debian-7-wheezy-v20140926", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 built on 2014-09-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20141017" + }, + "status": "READY", + "archiveSizeBytes": "1130454414", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140926", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "10976030536689117056", + "creationTimestamp": "2014-10-16T14:25:13.293-07:00", + "name": "debian-7-wheezy-v20141007", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 built on 2014-10-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140926" + }, + "status": "READY", + "archiveSizeBytes": "1136338194", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20141007", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "14322564894563626308", + "creationTimestamp": "2014-10-17T16:33:50.245-07:00", + "name": "debian-7-wheezy-v20141017", + "description": "Debian GNU/Linux 7.6 (wheezy) amd64 built on 2014-10-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20141021" + }, + "status": "READY", + "archiveSizeBytes": "1131519462", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20141017", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4331804404363440632", + "creationTimestamp": "2014-10-22T18:37:00.154-07:00", + "name": "debian-7-wheezy-v20141021", + "description": "Debian GNU/Linux 7.7 (wheezy) amd64 built on 2014-10-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20141108" + }, + "status": "READY", + "archiveSizeBytes": "1018043250", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20141021", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "229618739845245688", + "creationTimestamp": "2014-11-10T14:19:37.899-08:00", + "name": "debian-7-wheezy-v20141108", + "description": "Debian GNU/Linux 7.7 (wheezy) amd64 built on 2014-11-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20141205" + }, + "status": "READY", + "archiveSizeBytes": "1038752871", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20141108", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "14807287732096944178", + "creationTimestamp": "2014-12-08T16:55:08.309-08:00", + "name": "debian-7-wheezy-v20141205", + "description": "Debian GNU/Linux 7.7 (wheezy) amd64 built on 2014-12-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20141218" + }, + "status": "READY", + "archiveSizeBytes": "1025740815", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20141205", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5964557659296755906", + "creationTimestamp": "2015-01-05T14:51:28.728-08:00", + "name": "debian-7-wheezy-v20141218", + "description": "Debian GNU/Linux 7.7 (wheezy) amd64 built on 2014-12-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150112" + }, + "status": "READY", + "archiveSizeBytes": "1020130416", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20141218", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "16276740439541806318", + "creationTimestamp": "2015-01-14T17:58:33.264-08:00", + "name": "debian-7-wheezy-v20150112", + "description": "Debian GNU/Linux 7.8 (wheezy) amd64 built on 2015-01-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150127" + }, + "status": "READY", + "archiveSizeBytes": "1037608473", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150112", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "17404429246486236706", + "creationTimestamp": "2015-01-28T19:34:53.684-08:00", + "name": "debian-7-wheezy-v20150127", + "description": "Debian GNU/Linux 7.8 (wheezy) amd64 built on 2015-01-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150226" + }, + "status": "READY", + "archiveSizeBytes": "1226394330", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150127", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2092251371622101695", + "creationTimestamp": "2015-03-03T16:05:36.045-08:00", + "name": "debian-7-wheezy-v20150226", + "description": "Debian GNU/Linux 7.8 (wheezy) amd64 built on 2015-02-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150309" + }, + "status": "READY", + "archiveSizeBytes": "1188470496", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150226", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7363290212301204342", + "creationTimestamp": "2015-03-10T13:35:37.981-07:00", + "name": "debian-7-wheezy-v20150309", + "description": "Debian GNU/Linux 7.8 (wheezy) amd64 built on 2015-03-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150320" + }, + "status": "READY", + "archiveSizeBytes": "1189458567", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150309", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4168389741638435091", + "creationTimestamp": "2015-03-23T14:05:00.990-07:00", + "name": "debian-7-wheezy-v20150320", + "description": "Debian GNU/Linux 7.8 (wheezy) amd64 built on 2015-03-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150325" + }, + "status": "READY", + "archiveSizeBytes": "1213380447", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150320", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4028115250757244354", + "creationTimestamp": "2015-03-27T12:10:37.999-07:00", + "name": "debian-7-wheezy-v20150325", + "description": "Debian GNU/Linux 7.8 (wheezy) amd64 built on 2015-03-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150423" + }, + "status": "READY", + "archiveSizeBytes": "1241369565", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150325", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9107266046555795590", + "creationTimestamp": "2015-04-30T13:19:53.791-07:00", + "name": "debian-7-wheezy-v20150423", + "description": "Debian, Debian GNU/Linux, 7.8 (wheezy), amd64 built on 2015-04-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150526" + }, + "status": "READY", + "archiveSizeBytes": "1222013649", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150423", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4783461330810800373", + "creationTimestamp": "2015-05-27T14:24:42.940-07:00", + "name": "debian-7-wheezy-v20150526", + "description": "Debian, Debian GNU/Linux, 7.8 (wheezy), amd64 built on 2015-05-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150603" + }, + "status": "READY", + "archiveSizeBytes": "1251141228", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150526", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5077873882889362146", + "creationTimestamp": "2015-06-09T10:36:13.612-07:00", + "name": "debian-7-wheezy-v20150603", + "description": "Debian, Debian GNU/Linux, 7.8 (wheezy), amd64 built on 2015-06-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150710" + }, + "status": "READY", + "archiveSizeBytes": "1238875842", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150603", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "862380021770722877", + "creationTimestamp": "2015-07-13T13:34:26.357-07:00", + "name": "debian-7-wheezy-v20150710", + "description": "Debian, Debian GNU/Linux, 7.8 (wheezy), amd64 built on 2015-07-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150818" + }, + "status": "READY", + "archiveSizeBytes": "1135124274", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150710", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1977251577885766786", + "creationTimestamp": "2015-08-24T14:19:41.538-07:00", + "name": "debian-7-wheezy-v20150818", + "description": "Debian, Debian GNU/Linux, 7.8 (wheezy), amd64 built on 2015-08-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150915" + }, + "status": "READY", + "archiveSizeBytes": "1204589121", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150818", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2219910366749953193", + "creationTimestamp": "2015-09-17T14:36:06.803-07:00", + "name": "debian-7-wheezy-v20150915", + "description": "Debian, Debian GNU/Linux, 7.8 (wheezy), amd64 built on 2015-09-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150929" + }, + "status": "READY", + "archiveSizeBytes": "966536733", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150915", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8391952995838431112", + "creationTimestamp": "2015-10-06T13:39:03.657-07:00", + "name": "debian-7-wheezy-v20150929", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 built on 2015-09-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20151104" + }, + "status": "READY", + "archiveSizeBytes": "1356456091", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20150929", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7472444740226289268", + "creationTimestamp": "2015-11-09T15:47:39.663-08:00", + "name": "debian-7-wheezy-v20151104", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 built on 2015-11-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160119" + }, + "status": "READY", + "archiveSizeBytes": "1458211687", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20151104", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "178054021933869747", + "creationTimestamp": "2016-01-19T21:00:12.152-08:00", + "name": "debian-7-wheezy-v20160119", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 built on 2016-01-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160126" + }, + "status": "READY", + "archiveSizeBytes": "1420981239", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160119", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1949755785609541037", + "creationTimestamp": "2016-01-27T14:57:06.576-08:00", + "name": "debian-7-wheezy-v20160126", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 built on 2016-01-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160211" + }, + "status": "READY", + "archiveSizeBytes": "1564893779", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160126", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6751927408962489560", + "creationTimestamp": "2016-02-16T11:02:15.290-08:00", + "name": "debian-7-wheezy-v20160211", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 built on 2016-02-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160216" + }, + "status": "READY", + "archiveSizeBytes": "1261329643", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160211", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8329717468015196076", + "creationTimestamp": "2016-02-17T11:25:55.819-08:00", + "name": "debian-7-wheezy-v20160216", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 built on 2016-02-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160219" + }, + "status": "READY", + "archiveSizeBytes": "1642791807", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160216", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "851426180084457456", + "creationTimestamp": "2016-02-22T11:27:27.861-08:00", + "name": "debian-7-wheezy-v20160219", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 built on 2016-02-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160301" + }, + "status": "READY", + "archiveSizeBytes": "1570429559", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160219", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9188491368488226098", + "creationTimestamp": "2016-03-01T21:02:21.061-08:00", + "name": "debian-7-wheezy-v20160301", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 built on 2016-03-01", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160329" + }, + "status": "READY", + "archiveSizeBytes": "1555233751", + "diskSizeGb": "10", + "family": "debian-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160301", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4107819119180625239", + "creationTimestamp": "2016-03-30T10:24:08.143-07:00", + "name": "debian-7-wheezy-v20160329", + "description": "Debian, Debian GNU/Linux, 7.9 (wheezy), amd64 built on 2016-03-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160418" + }, + "status": "READY", + "archiveSizeBytes": "1579145027", + "diskSizeGb": "10", + "family": "debian-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160329", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2330647680314496737", + "creationTimestamp": "2016-04-19T10:17:02.612-07:00", + "name": "debian-7-wheezy-v20160418", + "description": "Debian, Debian GNU/Linux, 7 (wheezy), amd64 built on 2016-04-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160511" + }, + "status": "READY", + "archiveSizeBytes": "1685619183", + "diskSizeGb": "10", + "family": "debian-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160418", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5969617416871306054", + "creationTimestamp": "2016-05-12T12:46:49.944-07:00", + "name": "debian-7-wheezy-v20160511", + "description": "Debian, Debian GNU/Linux, 7 (wheezy), amd64 built on 2016-05-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160531" + }, + "status": "READY", + "archiveSizeBytes": "1713056111", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-7-wheezy" + ], + "family": "debian-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160511", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6712003501832250312", + "creationTimestamp": "2016-05-31T16:24:23.016-07:00", + "name": "debian-7-wheezy-v20160531", + "description": "Debian, Debian GNU/Linux, 7 (wheezy), amd64 built on 2016-05-31", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160531" + }, + "status": "READY", + "archiveSizeBytes": "1665663347", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-7-wheezy" + ], + "family": "debian-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20160531", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8012983927995764918", + "creationTimestamp": "2015-07-28T09:31:21.176-07:00", + "name": "debian-8-jessie-v20150710", + "description": "Debian, Debian GNU/Linux, 8.1 (jessie), amd64 built on 2015-07-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20150818" + }, + "status": "READY", + "archiveSizeBytes": "1502723088", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20150710", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4803780043693503579", + "creationTimestamp": "2015-08-24T14:20:52.620-07:00", + "name": "debian-8-jessie-v20150818", + "description": "Debian, Debian GNU/Linux, 8.1 (jessie), amd64 built on 2015-08-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20150915" + }, + "status": "READY", + "archiveSizeBytes": "1502287290", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20150818", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9050684134503386216", + "creationTimestamp": "2015-09-17T14:37:11.408-07:00", + "name": "debian-8-jessie-v20150915", + "description": "Debian, Debian GNU/Linux, 8.1 (jessie), amd64 built on 2015-09-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20150929" + }, + "status": "READY", + "archiveSizeBytes": "1541434152", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20150915", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "479380303135739743", + "creationTimestamp": "2015-10-06T13:40:16.404-07:00", + "name": "debian-8-jessie-v20150929", + "description": "Debian, Debian GNU/Linux, 8.1 (jessie), amd64 built on 2015-09-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20151104" + }, + "status": "READY", + "archiveSizeBytes": "2072003211", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20150929", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8125271935197941752", + "creationTimestamp": "2015-11-09T15:49:43.994-08:00", + "name": "debian-8-jessie-v20151104", + "description": "Debian, Debian GNU/Linux, 8.2 (jessie), amd64 built on 2015-11-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160119" + }, + "status": "READY", + "archiveSizeBytes": "1965487239", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20151104", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7044099199288388697", + "creationTimestamp": "2016-01-19T20:53:10.275-08:00", + "name": "debian-8-jessie-v20160119", + "description": "Debian, Debian GNU/Linux, 8.2 (jessie), amd64 built on 2016-01-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160126" + }, + "status": "READY", + "archiveSizeBytes": "1794618051", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160119", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2611625647675864883", + "creationTimestamp": "2016-01-27T14:51:08.104-08:00", + "name": "debian-8-jessie-v20160126", + "description": "Debian, Debian GNU/Linux, 8.3 (jessie), amd64 built on 2016-01-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160211" + }, + "status": "READY", + "archiveSizeBytes": "1817196291", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160126", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7917849281358122755", + "creationTimestamp": "2016-02-16T11:01:00.052-08:00", + "name": "debian-8-jessie-v20160211", + "description": "Debian, Debian GNU/Linux, 8.3 (jessie), amd64 built on 2016-02-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160216" + }, + "status": "READY", + "archiveSizeBytes": "1993726899", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160211", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3022505502235522576", + "creationTimestamp": "2016-02-17T11:24:47.501-08:00", + "name": "debian-8-jessie-v20160216", + "description": "Debian, Debian GNU/Linux, 8.3 (jessie), amd64 built on 2016-02-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160219" + }, + "status": "READY", + "archiveSizeBytes": "1832567851", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160216", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6632585699623624371", + "creationTimestamp": "2016-02-22T11:24:12.354-08:00", + "name": "debian-8-jessie-v20160219", + "description": "Debian, Debian GNU/Linux, 8.3 (jessie), amd64 built on 2016-02-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160301" + }, + "status": "READY", + "archiveSizeBytes": "1875092027", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160219", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4305665164175986097", + "creationTimestamp": "2016-03-01T21:00:14.701-08:00", + "name": "debian-8-jessie-v20160301", + "description": "Debian, Debian GNU/Linux, 8.3 (jessie), amd64 built on 2016-03-01", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160329" + }, + "status": "READY", + "archiveSizeBytes": "2122982087", + "diskSizeGb": "10", + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160301", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "541300387073864951", + "creationTimestamp": "2016-03-30T10:17:12.612-07:00", + "name": "debian-8-jessie-v20160329", + "description": "Debian, Debian GNU/Linux, 8.3 (jessie), amd64 built on 2016-03-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160418" + }, + "status": "READY", + "archiveSizeBytes": "2205599255", + "diskSizeGb": "10", + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160329", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "441369627834701418", + "creationTimestamp": "2016-04-19T10:19:01.307-07:00", + "name": "debian-8-jessie-v20160418", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2016-04-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160511" + }, + "status": "READY", + "archiveSizeBytes": "2193654683", + "diskSizeGb": "10", + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160418", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8141504463456788485", + "creationTimestamp": "2016-05-12T12:52:10.448-07:00", + "name": "debian-8-jessie-v20160511", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2016-05-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160606" + }, + "status": "READY", + "archiveSizeBytes": "2243154655", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160511", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7805729366280223498", + "creationTimestamp": "2016-06-09T17:12:21.096-07:00", + "name": "debian-8-jessie-v20160606", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2016-06-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160629" + }, + "status": "READY", + "archiveSizeBytes": "1969676807", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160606", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6887045619829570472", + "creationTimestamp": "2016-06-29T15:01:43.589-07:00", + "name": "debian-8-jessie-v20160629", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2016-06-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160711" + }, + "status": "READY", + "archiveSizeBytes": "1919347191", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160629", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2763166649542020962", + "creationTimestamp": "2016-07-12T11:06:05.564-07:00", + "name": "debian-8-jessie-v20160711", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2016-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160718" + }, + "status": "READY", + "archiveSizeBytes": "1930651123", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160711", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2892458668528289184", + "creationTimestamp": "2016-07-18T17:58:55.136-07:00", + "name": "debian-8-jessie-v20160718", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2016-07-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160803" + }, + "status": "READY", + "archiveSizeBytes": "1952227811", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160718", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "675642609008260682", + "creationTimestamp": "2016-08-04T11:25:41.297-07:00", + "name": "debian-8-jessie-v20160803", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2016-08-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160921" + }, + "status": "READY", + "archiveSizeBytes": "2629072344", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160803", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4440042102332175529", + "creationTimestamp": "2016-09-22T09:43:50.440-07:00", + "name": "debian-8-jessie-v20160921", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2016-09-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160923" + }, + "status": "READY", + "archiveSizeBytes": "2579198464", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160921", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9189746108837409181", + "creationTimestamp": "2016-09-23T13:24:18.999-07:00", + "name": "debian-8-jessie-v20160923", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2016-09-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161020" + }, + "status": "READY", + "archiveSizeBytes": "2710882389", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20160923", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2896785053468388774", + "creationTimestamp": "2016-10-20T16:29:13.138-07:00", + "name": "debian-8-jessie-v20161020", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2016-10-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161027" + }, + "status": "READY", + "archiveSizeBytes": "2608260899", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161020", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5160247391286197192", + "creationTimestamp": "2016-10-27T11:19:19.451-07:00", + "name": "debian-8-jessie-v20161027", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2016-10-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161129" + }, + "status": "READY", + "archiveSizeBytes": "3397129632", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161027", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2337844271628132977", + "creationTimestamp": "2016-11-29T16:26:06.505-08:00", + "name": "debian-8-jessie-v20161129", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2016-11-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161212" + }, + "status": "READY", + "archiveSizeBytes": "3321595236", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161129", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7458806642775961133", + "creationTimestamp": "2016-12-14T10:34:42.482-08:00", + "name": "debian-8-jessie-v20161212", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2016-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161215" + }, + "status": "READY", + "archiveSizeBytes": "3177072942", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161212", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "7187216073735715927", + "creationTimestamp": "2016-12-15T12:53:12.508-08:00", + "name": "debian-8-jessie-v20161215", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2016-12-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170110" + }, + "status": "READY", + "archiveSizeBytes": "3436783050", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20161215", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "8518452568791918335", + "creationTimestamp": "2017-01-11T12:39:44.349-08:00", + "name": "debian-8-jessie-v20170110", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-01-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170124" + }, + "status": "READY", + "archiveSizeBytes": "3428404224", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170110", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "3075498384948874867", + "creationTimestamp": "2017-01-24T16:26:04.187-08:00", + "name": "debian-8-jessie-v20170124", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-01-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170222" + }, + "status": "READY", + "archiveSizeBytes": "3249344874", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170124", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "326769381940133774", + "creationTimestamp": "2017-02-22T17:56:50.027-08:00", + "name": "debian-8-jessie-v20170222", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-02-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170227" + }, + "status": "READY", + "archiveSizeBytes": "3158607156", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170222", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "3377006497876393269", + "creationTimestamp": "2017-02-28T15:12:26.738-08:00", + "name": "debian-8-jessie-v20170227", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-02-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170308" + }, + "status": "READY", + "archiveSizeBytes": "3332611500", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170227", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "5415694655724201576", + "creationTimestamp": "2017-03-09T10:01:43.240-08:00", + "name": "debian-8-jessie-v20170308", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-03-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170327" + }, + "status": "READY", + "archiveSizeBytes": "3022171962", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170308", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "5129583257523289346", + "creationTimestamp": "2017-03-28T13:13:33.369-07:00", + "name": "debian-8-jessie-v20170327", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-03-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170426" + }, + "status": "READY", + "archiveSizeBytes": "2901135060", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170327", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "3046052394135714188", + "creationTimestamp": "2017-04-27T12:32:51.956-07:00", + "name": "debian-8-jessie-v20170426", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-04-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170523" + }, + "status": "READY", + "archiveSizeBytes": "3979950665", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170426", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "2405673006522696145", + "creationTimestamp": "2017-05-24T10:13:34.506-07:00", + "name": "debian-8-jessie-v20170523", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-05-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170616" + }, + "status": "READY", + "archiveSizeBytes": "4450778300", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170523", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "2996173371267726368", + "creationTimestamp": "2017-06-19T09:58:55.174-07:00", + "name": "debian-8-jessie-v20170616", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-06-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170619" + }, + "status": "READY", + "archiveSizeBytes": "4960036653", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170616", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "4812093124633817799", + "creationTimestamp": "2017-06-19T15:11:52.439-07:00", + "name": "debian-8-jessie-v20170619", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-06-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170717" + }, + "status": "READY", + "archiveSizeBytes": "5068939866", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170619", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "484050757931467210", + "creationTimestamp": "2017-07-18T10:02:29.701-07:00", + "name": "debian-8-jessie-v20170717", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-07-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170816" + }, + "status": "READY", + "archiveSizeBytes": "5656979694", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170717", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "7065344199167070149", + "creationTimestamp": "2017-08-17T12:40:26.196-07:00", + "name": "debian-8-jessie-v20170816", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-08-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170829" + }, + "status": "READY", + "archiveSizeBytes": "6092204039", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170816", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "4085395039072241872", + "creationTimestamp": "2017-08-30T10:30:39.252-07:00", + "name": "debian-8-jessie-v20170829", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-08-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170918" + }, + "status": "READY", + "archiveSizeBytes": "5887500452", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170829", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "1252886252218016818", + "creationTimestamp": "2017-09-19T10:58:53.883-07:00", + "name": "debian-8-jessie-v20170918", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-09-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20171018" + }, + "status": "READY", + "archiveSizeBytes": "6456579072", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20170918", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "4648663966833478982", + "creationTimestamp": "2017-10-19T16:22:17.938-07:00", + "name": "debian-8-jessie-v20171018", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-10-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20171025" + }, + "status": "READY", + "archiveSizeBytes": "6620620800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20171018", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "3477417937015385476", + "creationTimestamp": "2017-10-26T09:55:07.933-07:00", + "name": "debian-8-jessie-v20171025", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-10-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20171129" + }, + "status": "READY", + "archiveSizeBytes": "6631142400", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20171025", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "6405761720673759072", + "creationTimestamp": "2017-11-30T10:44:31.312-08:00", + "name": "debian-8-jessie-v20171129", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-11-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20171211" + }, + "status": "READY", + "archiveSizeBytes": "7332692224", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20171129", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "2961699305110209219", + "creationTimestamp": "2017-12-12T12:29:32.577-08:00", + "name": "debian-8-jessie-v20171211", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-12-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20171213" + }, + "status": "READY", + "archiveSizeBytes": "6912622080", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20171211", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "3183776645053875442", + "creationTimestamp": "2017-12-14T09:51:25.266-08:00", + "name": "debian-8-jessie-v20171213", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2017-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "6898810880", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20171213", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "4618737996181051825", + "creationTimestamp": "2018-01-09T12:34:38.766-08:00", + "name": "debian-8-jessie-v20180109", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180129" + }, + "status": "READY", + "archiveSizeBytes": "6858874880", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "7767648386556954935", + "creationTimestamp": "2018-01-30T10:22:16.732-08:00", + "name": "debian-8-jessie-v20180129", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on v20180129", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180206" + }, + "status": "READY", + "archiveSizeBytes": "8064659520", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180129", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "8706844866746249088", + "creationTimestamp": "2018-02-06T17:07:59.763-08:00", + "name": "debian-8-jessie-v20180206", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on v20180206", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180227" + }, + "status": "READY", + "archiveSizeBytes": "8181258240", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180206", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "3923932568234925868", + "creationTimestamp": "2018-02-28T13:40:19.526-08:00", + "name": "debian-8-jessie-v20180227", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 20180227", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180307" + }, + "status": "READY", + "archiveSizeBytes": "7929751680", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180227", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "1748879864461314418", + "creationTimestamp": "2018-03-08T09:49:18.173-08:00", + "name": "debian-8-jessie-v20180307", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 20180307", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180329" + }, + "status": "READY", + "archiveSizeBytes": "8307170880", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180307", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "2851376683487057448", + "creationTimestamp": "2018-03-30T09:41:44.602-07:00", + "name": "debian-8-jessie-v20180329", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 20180329", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180401" + }, + "status": "READY", + "archiveSizeBytes": "8687078400", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180329", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "7234474599577828666", + "creationTimestamp": "2018-04-01T18:13:58.288-07:00", + "name": "debian-8-jessie-v20180401", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 20180401", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180501" + }, + "status": "READY", + "archiveSizeBytes": "7562536320", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180401", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "8993558981993845232", + "creationTimestamp": "2018-05-02T10:02:24.456-07:00", + "name": "debian-8-jessie-v20180501", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 20180501", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180507" + }, + "status": "READY", + "archiveSizeBytes": "8361240000", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180501", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "6807047133680460953", + "creationTimestamp": "2018-05-07T16:00:07.362-07:00", + "name": "debian-8-jessie-v20180507", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 20180507", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "8652294720", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180507", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "3241424980291758706", + "creationTimestamp": "2018-05-09T17:38:54.163-07:00", + "name": "debian-8-jessie-v20180509", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 20180509", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180510" + }, + "status": "READY", + "archiveSizeBytes": "8366148480", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180509", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "3381827302283851857", + "creationTimestamp": "2018-05-10T19:58:06.938-07:00", + "name": "debian-8-jessie-v20180510", + "description": "Debian, Debian GNU/Linux, 8 (jessie), amd64 built on 20180510", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "7100624640", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "family": "debian-8", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-8-jessie-v20180510", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000204" + ] + }, + { + "kind": "compute#image", + "id": "7648997333780780186", + "creationTimestamp": "2017-06-16T16:32:05.924-07:00", + "name": "debian-9-stretch-v20170616", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 2017-06-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20170619" + }, + "status": "READY", + "archiveSizeBytes": "4681360869", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20170616", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "2140147249137972552", + "creationTimestamp": "2017-06-19T15:09:43.924-07:00", + "name": "debian-9-stretch-v20170619", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 2017-06-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20170717" + }, + "status": "READY", + "archiveSizeBytes": "4713886482", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20170619", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "4214972497302618486", + "creationTimestamp": "2017-07-18T10:04:25.197-07:00", + "name": "debian-9-stretch-v20170717", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 2017-07-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20170816" + }, + "status": "READY", + "archiveSizeBytes": "6249016134", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20170717", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "6384984799244209756", + "creationTimestamp": "2017-08-17T12:38:27.608-07:00", + "name": "debian-9-stretch-v20170816", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 2017-08-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20170829" + }, + "status": "READY", + "archiveSizeBytes": "5938934868", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20170816", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "872520048647555872", + "creationTimestamp": "2017-08-30T10:28:47.526-07:00", + "name": "debian-9-stretch-v20170829", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 2017-08-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20170918" + }, + "status": "READY", + "archiveSizeBytes": "6064956412", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20170829", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "4115320872253580435", + "creationTimestamp": "2017-09-19T10:57:16.720-07:00", + "name": "debian-9-stretch-v20170918", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 2017-09-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20171018" + }, + "status": "READY", + "archiveSizeBytes": "6337164288", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20170918", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "5814353812210879220", + "creationTimestamp": "2017-10-19T16:24:11.831-07:00", + "name": "debian-9-stretch-v20171018", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 2017-10-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20171025" + }, + "status": "READY", + "archiveSizeBytes": "6440773632", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20171018", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "6717881864614292774", + "creationTimestamp": "2017-10-26T09:56:42.082-07:00", + "name": "debian-9-stretch-v20171025", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 2017-10-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20171129" + }, + "status": "READY", + "archiveSizeBytes": "6620669952", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20171025", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "6803012007614082569", + "creationTimestamp": "2017-11-30T10:41:42.352-08:00", + "name": "debian-9-stretch-v20171129", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 2017-11-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20171211" + }, + "status": "READY", + "archiveSizeBytes": "7027567872", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20171129", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "3359423357008053662", + "creationTimestamp": "2017-12-12T12:26:26.170-08:00", + "name": "debian-9-stretch-v20171211", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 2017-12-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20171213" + }, + "status": "READY", + "archiveSizeBytes": "6632607488", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20171211", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "1966986601638594023", + "creationTimestamp": "2017-12-14T09:55:20.254-08:00", + "name": "debian-9-stretch-v20171213", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 2017-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180105" + }, + "status": "READY", + "archiveSizeBytes": "6990028032", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20171213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "5922498039257396102", + "creationTimestamp": "2018-01-05T11:09:30.273-08:00", + "name": "debian-9-stretch-v20180105", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 2018-01-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180129" + }, + "status": "READY", + "archiveSizeBytes": "6722197248", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180105", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "454971776294521143", + "creationTimestamp": "2018-01-30T10:22:16.795-08:00", + "name": "debian-9-stretch-v20180129", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on v20180129", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180206" + }, + "status": "READY", + "archiveSizeBytes": "7987137600", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180129", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "4677985420759789440", + "creationTimestamp": "2018-02-06T17:07:59.840-08:00", + "name": "debian-9-stretch-v20180206", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on v20180206", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180227" + }, + "status": "READY", + "archiveSizeBytes": "8699314560", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180206", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "110277956172685100", + "creationTimestamp": "2018-02-28T13:40:19.616-08:00", + "name": "debian-9-stretch-v20180227", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 20180227", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180307" + }, + "status": "READY", + "archiveSizeBytes": "7991947200", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180227", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "4096994577457400178", + "creationTimestamp": "2018-03-08T09:49:17.994-08:00", + "name": "debian-9-stretch-v20180307", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 20180307", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180329" + }, + "status": "READY", + "archiveSizeBytes": "8113139520", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180307", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "2426337275241813544", + "creationTimestamp": "2018-03-30T09:41:44.407-07:00", + "name": "debian-9-stretch-v20180329", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 20180329", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180401" + }, + "status": "READY", + "archiveSizeBytes": "8050008960", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180329", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "6178427276333169978", + "creationTimestamp": "2018-04-01T18:13:58.346-07:00", + "name": "debian-9-stretch-v20180401", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 20180401", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180501" + }, + "status": "READY", + "archiveSizeBytes": "7941380160", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180401", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "8457502129505194480", + "creationTimestamp": "2018-05-02T10:02:24.635-07:00", + "name": "debian-9-stretch-v20180501", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 20180501", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180507" + }, + "status": "READY", + "archiveSizeBytes": "7680117120", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180501", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "4891582291934799001", + "creationTimestamp": "2018-05-07T16:00:07.557-07:00", + "name": "debian-9-stretch-v20180507", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 20180507", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "8531137920", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180507", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "3747790814057474674", + "creationTimestamp": "2018-05-09T17:38:54.152-07:00", + "name": "debian-9-stretch-v20180509", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 20180509", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180510" + }, + "status": "READY", + "archiveSizeBytes": "7786804800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + }, + { + "kind": "compute#image", + "id": "7222939640269420625", + "creationTimestamp": "2018-05-10T19:58:07.050-07:00", + "name": "debian-9-stretch-v20180510", + "description": "Debian, Debian GNU/Linux, 9 (stretch), amd64 built on 20180510", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "7832184000", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch" + ], + "family": "debian-9", + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20180510", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000205" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:01 GMT + recorded_at: Fri, 11 May 2018 14:32:53 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/asia-southeast1/targetPools + uri: https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:53 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:01 GMT + - Fri, 11 May 2018 14:32:53 GMT Date: - - Fri, 02 Jun 2017 19:26:01 GMT + - Fri, 11 May 2018 14:32:53 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/jAb5Wl8n-tGslW9ZHN_BU_d6Fbk"' + - '"m5zgsm3eBqrpIvwNxgMUU6DDHQQ=/K5WMvnsR81BPaFBwRGVKTSbRil8="' Vary: - Origin - X-Origin @@ -6921,52 +26956,3733 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOQQ6CMBAA730FqVdh0+CJN3DwC7WuZaWyDbuFg/HvIjHx - Ad4nM/M0lR1putqusoEfuSge1M8R9cycehK1xw2hHcgz3zGoQKCFUq3lgrVz - betOMGMkngS8kK+Fiw7oRR38XLKLBNOtp2n86AbVLB3Auq5NZI4JfSZptg34 - rsDi4M+oeZk3xm8G0OQAAAA= + encoding: UTF-8 + string: | + { + "kind": "compute#imageList", + "id": "projects/rhel-cloud/global/images", + "items": [ + { + "kind": "compute#image", + "id": "8947071538435679253", + "creationTimestamp": "2014-03-19T15:02:05.313-07:00", + "name": "rhel-6-v20140318", + "description": "Red Hat Enterprise Linux 6.5 x86_64 built on 2014-03-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140408" + }, + "status": "READY", + "archiveSizeBytes": "399391552", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140318", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9222631000319758559", + "creationTimestamp": "2014-04-09T10:28:30.196-07:00", + "name": "rhel-6-v20140408", + "description": "Red Hat Enterprise Linux 6.5 x86_64 built on 2014-04-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140415" + }, + "status": "READY", + "archiveSizeBytes": "400274149", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140408", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "13526235554446051371", + "creationTimestamp": "2014-04-22T12:05:24.807-07:00", + "name": "rhel-6-v20140415", + "description": "Red Hat Enterprise Linux 6.5 x86_64 built on 2014-04-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140522" + }, + "status": "READY", + "archiveSizeBytes": "1200558345", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140415", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9666050815773542881", + "creationTimestamp": "2014-06-03T10:21:27.417-07:00", + "name": "rhel-6-v20140522", + "description": "Red Hat Enterprise Linux 6.5 x86_64 built on 2014-05-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140606" + }, + "status": "READY", + "archiveSizeBytes": "1201883436", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140522", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "11174400167829492707", + "creationTimestamp": "2014-06-05T14:46:29.326-07:00", + "name": "rhel-6-v20140605", + "description": "Red Hat Enterprise Linux 6.5 x86_64 built on 2014-06-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140606" + }, + "status": "READY", + "archiveSizeBytes": "1203486072", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140605", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9084204177437693523", + "creationTimestamp": "2014-06-06T13:16:44.898-07:00", + "name": "rhel-6-v20140606", + "description": "Red Hat Enterprise Linux 6.5 x86_64 built on 2014-06-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140619" + }, + "status": "READY", + "archiveSizeBytes": "1203925644", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140606", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "11310224349465944438", + "creationTimestamp": "2014-06-24T13:27:56.727-07:00", + "name": "rhel-6-v20140619", + "description": "Red Hat Enterprise Linux 6.5 x86_64 built on 2014-06-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140718" + }, + "status": "READY", + "archiveSizeBytes": "1203230196", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140619", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "14049721108706090983", + "creationTimestamp": "2014-07-24T08:58:17.801-07:00", + "name": "rhel-6-v20140718", + "description": "Red Hat Enterprise Linux 6.5 x86_64 built on 2014-07-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140924" + }, + "status": "READY", + "archiveSizeBytes": "1205047026", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140718", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9018400156784880077", + "creationTimestamp": "2014-09-24T20:21:45.976-07:00", + "name": "rhel-6-v20140924", + "description": "Red Hat Enterprise Linux 6.5 x86_64 built on 2014-09-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140926" + }, + "status": "READY", + "archiveSizeBytes": "1213189710", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140924", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "15373399396441727020", + "creationTimestamp": "2014-09-29T09:37:43.756-07:00", + "name": "rhel-6-v20140926", + "description": "Red Hat Enterprise Linux 6.5 x86_64 built on 2014-09-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20141007" + }, + "status": "READY", + "archiveSizeBytes": "1213504401", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20140926", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2543968077892462586", + "creationTimestamp": "2014-10-16T14:33:52.039-07:00", + "name": "rhel-6-v20141007", + "description": "Red Hat Enterprise Linux 6.5 x86_64 built on 2014-10-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20141020" + }, + "status": "READY", + "archiveSizeBytes": "1213300149", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20141007", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "16186227637354963340", + "creationTimestamp": "2014-10-21T13:29:46.857-07:00", + "name": "rhel-6-v20141020", + "description": "Red Hat Enterprise Linux 6.6 x86_64 built on 2014-10-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20141021" + }, + "status": "READY", + "archiveSizeBytes": "1253082585", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20141020", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "11835718991813222651", + "creationTimestamp": "2014-10-22T18:34:05.578-07:00", + "name": "rhel-6-v20141021", + "description": "Red Hat Enterprise Linux 6.6 x86_64 built on 2014-10-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20141108" + }, + "status": "READY", + "archiveSizeBytes": "1212959256", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20141021", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3513685281666428410", + "creationTimestamp": "2014-11-10T14:11:26.431-08:00", + "name": "rhel-6-v20141108", + "description": "Red Hat Enterprise Linux 6.6 x86_64 built on 2014-11-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20141205" + }, + "status": "READY", + "archiveSizeBytes": "1254913491", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20141108", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "17274537419110931282", + "creationTimestamp": "2014-12-08T17:10:59.171-08:00", + "name": "rhel-6-v20141205", + "description": "Red Hat Enterprise Linux 6.6 x86_64 built on 2014-12-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20141218" + }, + "status": "READY", + "archiveSizeBytes": "1261487994", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20141205", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "10968758201478329729", + "creationTimestamp": "2015-01-05T15:04:11.446-08:00", + "name": "rhel-6-v20141218", + "description": "Red Hat Enterprise Linux 6.6 x86_64 built on 2014-12-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150127" + }, + "status": "READY", + "archiveSizeBytes": "1264276137", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20141218", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3613547204479377378", + "creationTimestamp": "2015-01-28T19:26:25.362-08:00", + "name": "rhel-6-v20150127", + "description": "Red Hat Enterprise Linux 6.6 x86_64 built on 2015-01-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150226" + }, + "status": "READY", + "archiveSizeBytes": "1277994636", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150127", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6263866747319481090", + "creationTimestamp": "2015-03-03T16:12:29.792-08:00", + "name": "rhel-6-v20150226", + "description": "Red Hat Enterprise Linux 6.6 x86_64 built on 2015-02-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150309" + }, + "status": "READY", + "archiveSizeBytes": "1276876575", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150226", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8359301318746237951", + "creationTimestamp": "2015-03-10T13:33:20.044-07:00", + "name": "rhel-6-v20150309", + "description": "Red Hat Enterprise Linux 6.6 x86_64 built on 2015-03-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150325" + }, + "status": "READY", + "archiveSizeBytes": "1277177121", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150309", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1913607317978879363", + "creationTimestamp": "2015-03-27T12:11:40.241-07:00", + "name": "rhel-6-v20150325", + "description": "Red Hat Enterprise Linux 6.6 x86_64 built on 2015-03-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150423" + }, + "status": "READY", + "archiveSizeBytes": "1279635270", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150325", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8057593146268135503", + "creationTimestamp": "2015-04-30T13:20:48.975-07:00", + "name": "rhel-6-v20150423", + "description": "Red Hat, Red Hat Enterprise Linux, 6.6, x86_64 built on 2015-04-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150526" + }, + "status": "READY", + "archiveSizeBytes": "1284161856", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150423", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7199527610455132347", + "creationTimestamp": "2015-05-27T14:25:40.991-07:00", + "name": "rhel-6-v20150526", + "description": "Red Hat, Red Hat Enterprise Linux, 6.6, x86_64 built on 2015-05-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150603" + }, + "status": "READY", + "archiveSizeBytes": "1286995863", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150526", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4385588204894067371", + "creationTimestamp": "2015-06-09T10:37:08.964-07:00", + "name": "rhel-6-v20150603", + "description": "Red Hat, Red Hat Enterprise Linux, 6.6, x86_64 built on 2015-06-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150710" + }, + "status": "READY", + "archiveSizeBytes": "1285561839", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150603", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1033639836948996071", + "creationTimestamp": "2015-07-13T13:35:20.504-07:00", + "name": "rhel-6-v20150710", + "description": "Red Hat, Red Hat Enterprise Linux, 6.6, x86_64 built on 2015-07-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150818" + }, + "status": "READY", + "archiveSizeBytes": "1382866263", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150710", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2399944860245570825", + "creationTimestamp": "2015-08-24T14:25:58.563-07:00", + "name": "rhel-6-v20150818", + "description": "Red Hat, Red Hat Enterprise Linux, 6.7, x86_64 built on 2015-08-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150915" + }, + "status": "READY", + "archiveSizeBytes": "1455402885", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150818", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6508131012157279498", + "creationTimestamp": "2015-09-17T14:43:01.043-07:00", + "name": "rhel-6-v20150915", + "description": "Red Hat, Red Hat Enterprise Linux, 6.7, x86_64 built on 2015-09-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150929" + }, + "status": "READY", + "archiveSizeBytes": "1455871410", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150915", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6995094146435877940", + "creationTimestamp": "2015-10-06T13:45:15.701-07:00", + "name": "rhel-6-v20150929", + "description": "Red Hat, Red Hat Enterprise Linux, 6.7, x86_64 built on 2015-09-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20151104" + }, + "status": "READY", + "archiveSizeBytes": "1948684507", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20150929", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2707863564008066995", + "creationTimestamp": "2015-11-09T15:50:52.898-08:00", + "name": "rhel-6-v20151104", + "description": "Red Hat, Red Hat Enterprise Linux, 6.7, x86_64 built on 2015-11-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160119" + }, + "status": "READY", + "archiveSizeBytes": "1951071923", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20151104", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1384527364925598853", + "creationTimestamp": "2016-01-19T20:51:54.880-08:00", + "name": "rhel-6-v20160119", + "description": "Red Hat, Red Hat Enterprise Linux, 6.7, x86_64 built on 2016-01-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160126" + }, + "status": "READY", + "archiveSizeBytes": "1555545391", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160119", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4685350993372968065", + "creationTimestamp": "2016-01-27T14:53:34.132-08:00", + "name": "rhel-6-v20160126", + "description": "Red Hat, Red Hat Enterprise Linux, 6.7, x86_64 built on 2016-01-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160211" + }, + "status": "READY", + "archiveSizeBytes": "1557174291", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160126", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6166687047721340859", + "creationTimestamp": "2016-02-16T10:58:28.707-08:00", + "name": "rhel-6-v20160211", + "description": "Red Hat, Red Hat Enterprise Linux, 6.7, x86_64 built on 2016-02-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160216" + }, + "status": "READY", + "archiveSizeBytes": "1560076091", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160211", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8313609459459520086", + "creationTimestamp": "2016-02-17T11:23:37.690-08:00", + "name": "rhel-6-v20160216", + "description": "Red Hat, Red Hat Enterprise Linux, 6.7, x86_64 built on 2016-02-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160219" + }, + "status": "READY", + "archiveSizeBytes": "1560345063", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160216", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "720233827047759473", + "creationTimestamp": "2016-02-22T11:25:18.036-08:00", + "name": "rhel-6-v20160219", + "description": "Red Hat, Red Hat Enterprise Linux, 6.7, x86_64 built on 2016-02-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160301" + }, + "status": "READY", + "archiveSizeBytes": "1559701895", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160219", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4700240794592045018", + "creationTimestamp": "2016-03-03T16:39:17.331-08:00", + "name": "rhel-6-v20160303", + "description": "Red Hat, Red Hat Enterprise Linux, 6.7, x86_64 built on 2016-03-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160329" + }, + "status": "READY", + "archiveSizeBytes": "1560272631", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160303", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4550130085571703888", + "creationTimestamp": "2016-03-30T10:19:59.238-07:00", + "name": "rhel-6-v20160329", + "description": "Red Hat, Red Hat Enterprise Linux, 6.7, x86_64 built on 2016-03-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160418" + }, + "status": "READY", + "archiveSizeBytes": "1561319479", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160329", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1788033649715435381", + "creationTimestamp": "2016-04-19T10:23:38.912-07:00", + "name": "rhel-6-v20160418", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2016-04-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160511" + }, + "status": "READY", + "archiveSizeBytes": "1564320299", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160418", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5621511378387427988", + "creationTimestamp": "2016-05-12T12:41:47.530-07:00", + "name": "rhel-6-v20160511", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2016-05-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160606" + }, + "status": "READY", + "archiveSizeBytes": "1733257335", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160511", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3543465063668496921", + "creationTimestamp": "2016-06-09T17:08:22.457-07:00", + "name": "rhel-6-v20160606", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2016-06-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160629" + }, + "status": "READY", + "archiveSizeBytes": "2934435991", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160606", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3300441477458033174", + "creationTimestamp": "2016-06-29T15:00:25.968-07:00", + "name": "rhel-6-v20160629", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2016-06-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160711" + }, + "status": "READY", + "archiveSizeBytes": "2957473271", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160629", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6188953133153554853", + "creationTimestamp": "2016-07-12T10:56:26.878-07:00", + "name": "rhel-6-v20160711", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2016-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160718" + }, + "status": "READY", + "archiveSizeBytes": "2962485899", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160711", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4922138965691122902", + "creationTimestamp": "2016-07-18T17:54:17.118-07:00", + "name": "rhel-6-v20160718", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2016-07-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160803" + }, + "status": "READY", + "archiveSizeBytes": "3001562515", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160718", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1878883284735113511", + "creationTimestamp": "2016-08-04T11:22:00.733-07:00", + "name": "rhel-6-v20160803", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2016-08-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160921" + }, + "status": "READY", + "archiveSizeBytes": "3708778894", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160803", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8929991322908604406", + "creationTimestamp": "2016-09-22T09:38:49.249-07:00", + "name": "rhel-6-v20160921", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2016-09-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20161026" + }, + "status": "READY", + "archiveSizeBytes": "3686269354", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20160921", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "97163557044311135", + "creationTimestamp": "2016-10-26T10:41:04.407-07:00", + "name": "rhel-6-v20161026", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2016-10-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20161027" + }, + "status": "READY", + "archiveSizeBytes": "4710399030", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20161026", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3926964956922116660", + "creationTimestamp": "2016-10-27T11:18:03.894-07:00", + "name": "rhel-6-v20161027", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2016-10-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20161129" + }, + "status": "READY", + "archiveSizeBytes": "4570728792", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20161027", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7235644531525526185", + "creationTimestamp": "2016-11-29T16:24:38.507-08:00", + "name": "rhel-6-v20161129", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2016-11-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20161208" + }, + "status": "READY", + "archiveSizeBytes": "4684090356", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20161129", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5034510338207533984", + "creationTimestamp": "2016-12-08T16:05:35.073-08:00", + "name": "rhel-6-v20161208", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2016-12-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20161212" + }, + "status": "READY", + "archiveSizeBytes": "4639989552", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20161208", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1313458888950689480", + "creationTimestamp": "2016-12-14T10:32:07.991-08:00", + "name": "rhel-6-v20161212", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2016-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170110" + }, + "status": "READY", + "archiveSizeBytes": "4841772504", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20161212", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9184942600192993572", + "creationTimestamp": "2017-01-11T12:38:35.546-08:00", + "name": "rhel-6-v20170110", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-01-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170124" + }, + "status": "READY", + "archiveSizeBytes": "4773130320", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170110", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "6143030290507517623", + "creationTimestamp": "2017-01-24T16:24:56.938-08:00", + "name": "rhel-6-v20170124", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-01-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170222" + }, + "status": "READY", + "archiveSizeBytes": "4796756982", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170124", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "2868620418867264675", + "creationTimestamp": "2017-02-22T18:00:44.675-08:00", + "name": "rhel-6-v20170222", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-02-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170227" + }, + "status": "READY", + "archiveSizeBytes": "4788503826", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170222", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "1439026750370331325", + "creationTimestamp": "2017-02-28T15:14:26.464-08:00", + "name": "rhel-6-v20170227", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-02-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170327" + }, + "status": "READY", + "archiveSizeBytes": "4777429464", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170227", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "4007129658208779381", + "creationTimestamp": "2017-03-28T13:07:54.849-07:00", + "name": "rhel-6-v20170327", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-03-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170426" + }, + "status": "READY", + "archiveSizeBytes": "5077516680", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170327", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "3495103779121919596", + "creationTimestamp": "2017-04-27T12:37:39.171-07:00", + "name": "rhel-6-v20170426", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-04-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170523" + }, + "status": "READY", + "archiveSizeBytes": "5793783224", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170426", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "1052056978777996948", + "creationTimestamp": "2017-05-24T10:18:51.499-07:00", + "name": "rhel-6-v20170523", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-05-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170616" + }, + "status": "READY", + "archiveSizeBytes": "6668114628", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170523", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "8390693582564343018", + "creationTimestamp": "2017-06-19T09:55:33.939-07:00", + "name": "rhel-6-v20170616", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-06-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170620" + }, + "status": "READY", + "archiveSizeBytes": "7439103906", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170616", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "2242534325967134463", + "creationTimestamp": "2017-06-20T15:22:08.837-07:00", + "name": "rhel-6-v20170620", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-06-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170717" + }, + "status": "READY", + "archiveSizeBytes": "8436705784", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170620", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "8485035953717739591", + "creationTimestamp": "2017-07-18T10:00:24.515-07:00", + "name": "rhel-6-v20170717", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-07-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170805" + }, + "status": "READY", + "archiveSizeBytes": "7170237334", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170717", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "3066970027319795264", + "creationTimestamp": "2017-08-06T06:59:11.166-07:00", + "name": "rhel-6-v20170805", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-08-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170816" + }, + "status": "READY", + "archiveSizeBytes": "8027471725", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170805", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "5444278762604089209", + "creationTimestamp": "2017-08-17T12:42:14.521-07:00", + "name": "rhel-6-v20170816", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-08-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170829" + }, + "status": "READY", + "archiveSizeBytes": "7919859242", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170816", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "6668153268671826012", + "creationTimestamp": "2017-08-30T10:32:35.307-07:00", + "name": "rhel-6-v20170829", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-08-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170918" + }, + "status": "READY", + "archiveSizeBytes": "8172990362", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170829", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "4657605873998030206", + "creationTimestamp": "2017-09-19T11:01:53.404-07:00", + "name": "rhel-6-v20170918", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-09-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170930" + }, + "status": "READY", + "archiveSizeBytes": "8474368512", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170918", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "3444460273543233387", + "creationTimestamp": "2017-09-30T22:47:48.654-07:00", + "name": "rhel-6-v20170930", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-09-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20171018" + }, + "status": "READY", + "archiveSizeBytes": "10474083840", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20170930", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "7709471890636835449", + "creationTimestamp": "2017-10-19T16:26:14.975-07:00", + "name": "rhel-6-v20171018", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-10-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20171025" + }, + "status": "READY", + "archiveSizeBytes": "10429732608", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20171018", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "206288758966823427", + "creationTimestamp": "2017-10-26T10:01:32.416-07:00", + "name": "rhel-6-v20171025", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-10-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20171129" + }, + "status": "READY", + "archiveSizeBytes": "10540311552", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20171025", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "6858209153480781489", + "creationTimestamp": "2017-11-30T10:39:26.519-08:00", + "name": "rhel-6-v20171129", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-11-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20171213" + }, + "status": "READY", + "archiveSizeBytes": "11510487872", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20171129", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "8138233699748480348", + "creationTimestamp": "2017-12-14T09:58:11.692-08:00", + "name": "rhel-6-v20171213", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2017-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180104" + }, + "status": "READY", + "archiveSizeBytes": "11526584576", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20171213", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "688867968588915929", + "creationTimestamp": "2018-01-04T13:18:46.427-08:00", + "name": "rhel-6-v20180104", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 2018-01-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180129" + }, + "status": "READY", + "archiveSizeBytes": "11690092544", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180104", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "1976959756222138169", + "creationTimestamp": "2018-01-30T10:30:47.028-08:00", + "name": "rhel-6-v20180129", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on v20180129", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180205" + }, + "status": "READY", + "archiveSizeBytes": "14674636800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180129", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "5838624144078751002", + "creationTimestamp": "2018-02-05T16:51:02.011-08:00", + "name": "rhel-6-v20180205", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on v20180205", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180227" + }, + "status": "READY", + "archiveSizeBytes": "14412180480", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180205", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "6930379795347447755", + "creationTimestamp": "2018-02-28T13:37:41.104-08:00", + "name": "rhel-6-v20180227", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 20180227", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180314" + }, + "status": "READY", + "archiveSizeBytes": "13985041920", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180227", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "2296442118291734584", + "creationTimestamp": "2018-03-16T10:28:56.107-07:00", + "name": "rhel-6-v20180314", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 20180314", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180401" + }, + "status": "READY", + "archiveSizeBytes": "14613411840", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180314", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "5321235255266145022", + "creationTimestamp": "2018-04-01T23:22:10.024-07:00", + "name": "rhel-6-v20180401", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 20180401", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180507" + }, + "status": "READY", + "archiveSizeBytes": "14538977280", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180401", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "4208572373204297635", + "creationTimestamp": "2018-05-07T15:55:09.211-07:00", + "name": "rhel-6-v20180507", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 20180507", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "14391379200", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180507", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "8073858792881533956", + "creationTimestamp": "2018-05-09T16:57:32.070-07:00", + "name": "rhel-6-v20180509", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 20180509", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180510" + }, + "status": "READY", + "archiveSizeBytes": "15084898560", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180509", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "1399813595849079201", + "creationTimestamp": "2018-05-10T20:00:31.234-07:00", + "name": "rhel-6-v20180510", + "description": "Red Hat, Red Hat Enterprise Linux, 6, x86_64 built on 20180510", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "14903953920", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-6-server" + ], + "family": "rhel-6", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-6-v20180510", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000002" + ] + }, + { + "kind": "compute#image", + "id": "11547033744516000751", + "creationTimestamp": "2014-10-06T11:48:39.213-07:00", + "name": "rhel-7-v20141001", + "description": "Red Hat Enterprise Linux 7.0 x86_64 built on 2014-10-01", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20141007" + }, + "status": "READY", + "archiveSizeBytes": "1185933630", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20141001", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "10836562935319345005", + "creationTimestamp": "2014-10-16T14:40:59.593-07:00", + "name": "rhel-7-v20141007", + "description": "Red Hat Enterprise Linux 7.0 x86_64 built on 2014-10-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20141020" + }, + "status": "READY", + "archiveSizeBytes": "1185664950", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20141007", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "975217666071197340", + "creationTimestamp": "2014-10-21T13:26:36.817-07:00", + "name": "rhel-7-v20141020", + "description": "Red Hat Enterprise Linux 7.0 x86_64 built on 2014-10-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20141021" + }, + "status": "READY", + "archiveSizeBytes": "1187611998", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20141020", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "10442080673054370434", + "creationTimestamp": "2014-10-22T18:30:43.797-07:00", + "name": "rhel-7-v20141021", + "description": "Red Hat Enterprise Linux 7.0 x86_64 built on 2014-10-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20141108" + }, + "status": "READY", + "archiveSizeBytes": "1169309034", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20141021", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9656001643961289198", + "creationTimestamp": "2014-11-10T14:15:28.054-08:00", + "name": "rhel-7-v20141108", + "description": "Red Hat Enterprise Linux 7.0 x86_64 built on 2014-11-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20141205" + }, + "status": "READY", + "archiveSizeBytes": "1201321944", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20141108", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9718957591079040023", + "creationTimestamp": "2014-12-08T17:07:02.804-08:00", + "name": "rhel-7-v20141205", + "description": "Red Hat Enterprise Linux 7.0 x86_64 built on 2014-12-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20141218" + }, + "status": "READY", + "archiveSizeBytes": "1204146084", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20141205", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "12361578754725466131", + "creationTimestamp": "2015-01-05T15:07:37.640-08:00", + "name": "rhel-7-v20141218", + "description": "Red Hat Enterprise Linux 7.0 x86_64 built on 2014-12-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150127" + }, + "status": "READY", + "archiveSizeBytes": "1211033703", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20141218", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "10741355026853521327", + "creationTimestamp": "2015-01-28T19:30:59.946-08:00", + "name": "rhel-7-v20150127", + "description": "Red Hat Enterprise Linux 7.0 x86_64 built on 2015-01-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150226" + }, + "status": "READY", + "archiveSizeBytes": "1225456806", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150127", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6781078116536939361", + "creationTimestamp": "2015-03-03T16:10:54.845-08:00", + "name": "rhel-7-v20150226", + "description": "Red Hat Enterprise Linux 7.0 x86_64 built on 2015-02-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150309" + }, + "status": "READY", + "archiveSizeBytes": "1228921401", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150226", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1475233109997972410", + "creationTimestamp": "2015-03-10T13:34:29.215-07:00", + "name": "rhel-7-v20150309", + "description": "Red Hat Enterprise Linux 7.0 x86_64 built on 2015-03-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150311" + }, + "status": "READY", + "archiveSizeBytes": "1257624549", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150309", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5390696082133820088", + "creationTimestamp": "2015-03-11T12:49:43.229-07:00", + "name": "rhel-7-v20150311", + "description": "Red Hat Enterprise Linux 7.1 x86_64 built on 2015-03-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150325" + }, + "status": "READY", + "archiveSizeBytes": "1257624537", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150311", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5748628318596896075", + "creationTimestamp": "2015-03-27T12:12:36.189-07:00", + "name": "rhel-7-v20150325", + "description": "Red Hat Enterprise Linux 7.1 x86_64 built on 2015-03-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150423" + }, + "status": "READY", + "archiveSizeBytes": "1258069755", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150325", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6639856181666852914", + "creationTimestamp": "2015-04-30T13:21:49.879-07:00", + "name": "rhel-7-v20150423", + "description": "Red Hat, Red Hat Enterprise Linux, 7.1, x86_64 built on 2015-04-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150526" + }, + "status": "READY", + "archiveSizeBytes": "1266700467", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150423", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2129726421592672371", + "creationTimestamp": "2015-05-27T14:26:52.189-07:00", + "name": "rhel-7-v20150526", + "description": "Red Hat, Red Hat Enterprise Linux, 7.1, x86_64 built on 2015-05-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150603" + }, + "status": "READY", + "archiveSizeBytes": "1277207319", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150526", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4786864512573282939", + "creationTimestamp": "2015-06-09T10:38:28.466-07:00", + "name": "rhel-7-v20150603", + "description": "Red Hat, Red Hat Enterprise Linux, 7.1, x86_64 built on 2015-06-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150710" + }, + "status": "READY", + "archiveSizeBytes": "1275375270", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150603", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "706342799050121127", + "creationTimestamp": "2015-07-13T13:36:24.252-07:00", + "name": "rhel-7-v20150710", + "description": "Red Hat, Red Hat Enterprise Linux, 7.1, x86_64 built on 2015-07-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150818" + }, + "status": "READY", + "archiveSizeBytes": "1272202509", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150710", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2997183702254367452", + "creationTimestamp": "2015-08-24T14:27:15.396-07:00", + "name": "rhel-7-v20150818", + "description": "Red Hat, Red Hat Enterprise Linux, 7.1, x86_64 built on 2015-08-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150915" + }, + "status": "READY", + "archiveSizeBytes": "1298577381", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150818", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8363697179136002773", + "creationTimestamp": "2015-09-17T14:44:26.261-07:00", + "name": "rhel-7-v20150915", + "description": "Red Hat, Red Hat Enterprise Linux, 7.1, x86_64 built on 2015-09-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150929" + }, + "status": "READY", + "archiveSizeBytes": "1304838054", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150915", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8038037833698086346", + "creationTimestamp": "2015-10-06T13:46:29.677-07:00", + "name": "rhel-7-v20150929", + "description": "Red Hat, Red Hat Enterprise Linux, 7.1, x86_64 built on 2015-09-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20151104" + }, + "status": "READY", + "archiveSizeBytes": "1739465255", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20150929", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5670907071397924697", + "creationTimestamp": "2015-11-09T15:52:22.734-08:00", + "name": "rhel-7-v20151104", + "description": "Red Hat, Red Hat Enterprise Linux, 7.1, x86_64 built on 2015-11-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160119" + }, + "status": "READY", + "archiveSizeBytes": "1778399607", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20151104", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "990801326284909301", + "creationTimestamp": "2016-01-19T20:59:06.212-08:00", + "name": "rhel-7-v20160119", + "description": "Red Hat, Red Hat Enterprise Linux, 7.2, x86_64 built on 2016-01-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160126" + }, + "status": "READY", + "archiveSizeBytes": "1618754091", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160119", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8851737894927529205", + "creationTimestamp": "2016-01-27T14:52:10.741-08:00", + "name": "rhel-7-v20160126", + "description": "Red Hat, Red Hat Enterprise Linux, 7.2, x86_64 built on 2016-01-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160211" + }, + "status": "READY", + "archiveSizeBytes": "1620111239", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160126", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8323249397591625550", + "creationTimestamp": "2016-02-16T10:59:45.743-08:00", + "name": "rhel-7-v20160211", + "description": "Red Hat, Red Hat Enterprise Linux, 7.2, x86_64 built on 2016-02-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160216" + }, + "status": "READY", + "archiveSizeBytes": "1623335251", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160211", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "553454461623301783", + "creationTimestamp": "2016-02-17T11:22:32.740-08:00", + "name": "rhel-7-v20160216", + "description": "Red Hat, Red Hat Enterprise Linux, 7.2, x86_64 built on 2016-02-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160219" + }, + "status": "READY", + "archiveSizeBytes": "1623774515", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160216", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5391286575657574324", + "creationTimestamp": "2016-02-22T11:28:27.912-08:00", + "name": "rhel-7-v20160219", + "description": "Red Hat, Red Hat Enterprise Linux, 7.2, x86_64 built on 2016-02-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160301" + }, + "status": "READY", + "archiveSizeBytes": "1622746391", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160219", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4729600469472994824", + "creationTimestamp": "2016-03-03T16:37:59.894-08:00", + "name": "rhel-7-v20160303", + "description": "Red Hat, Red Hat Enterprise Linux, 7.2, x86_64 built on 2016-03-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160329" + }, + "status": "READY", + "archiveSizeBytes": "1624568119", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160303", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2248381537400763887", + "creationTimestamp": "2016-03-30T10:21:04.619-07:00", + "name": "rhel-7-v20160329", + "description": "Red Hat, Red Hat Enterprise Linux, 7.2, x86_64 built on 2016-03-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160418" + }, + "status": "READY", + "archiveSizeBytes": "1623701527", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160329", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5900141974353860265", + "creationTimestamp": "2016-04-19T10:17:58.306-07:00", + "name": "rhel-7-v20160418", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2016-04-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160511" + }, + "status": "READY", + "archiveSizeBytes": "1667775335", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160418", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4367412775137927715", + "creationTimestamp": "2016-05-12T12:43:08.422-07:00", + "name": "rhel-7-v20160511", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2016-05-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160606" + }, + "status": "READY", + "archiveSizeBytes": "1668692135", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160511", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "191339618530474665", + "creationTimestamp": "2016-06-09T17:05:26.869-07:00", + "name": "rhel-7-v20160606", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2016-06-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160629" + }, + "status": "READY", + "archiveSizeBytes": "2905578123", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160606", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5947214021351045725", + "creationTimestamp": "2016-06-29T14:59:14.154-07:00", + "name": "rhel-7-v20160629", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2016-06-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160711" + }, + "status": "READY", + "archiveSizeBytes": "2940903719", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160629", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1695521166546473343", + "creationTimestamp": "2016-07-12T10:57:36.248-07:00", + "name": "rhel-7-v20160711", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2016-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160718" + }, + "status": "READY", + "archiveSizeBytes": "2845994371", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160711", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6341790016827606124", + "creationTimestamp": "2016-07-18T17:55:31.768-07:00", + "name": "rhel-7-v20160718", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2016-07-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160803" + }, + "status": "READY", + "archiveSizeBytes": "2895673247", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160718", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2522963491045652881", + "creationTimestamp": "2016-08-04T11:20:46.457-07:00", + "name": "rhel-7-v20160803", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2016-08-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160921" + }, + "status": "READY", + "archiveSizeBytes": "3610246134", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160803", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4117819662782805900", + "creationTimestamp": "2016-09-22T09:40:03.358-07:00", + "name": "rhel-7-v20160921", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2016-09-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20161024" + }, + "status": "READY", + "archiveSizeBytes": "3681837169", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20160921", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3483908336961941561", + "creationTimestamp": "2016-10-24T20:17:42.813-07:00", + "name": "rhel-7-v20161024", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2016-10-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20161027" + }, + "status": "READY", + "archiveSizeBytes": "4406030304", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20161024", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7613991396088740477", + "creationTimestamp": "2016-10-27T11:16:50.698-07:00", + "name": "rhel-7-v20161027", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2016-10-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20161129" + }, + "status": "READY", + "archiveSizeBytes": "4585135320", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20161027", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4775877397731058975", + "creationTimestamp": "2016-11-29T16:23:12.941-08:00", + "name": "rhel-7-v20161129", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2016-11-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20161212" + }, + "status": "READY", + "archiveSizeBytes": "4968326694", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20161129", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "407874844294393496", + "creationTimestamp": "2016-12-14T10:33:27.677-08:00", + "name": "rhel-7-v20161212", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2016-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170110" + }, + "status": "READY", + "archiveSizeBytes": "5017256220", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20161212", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6280876724718348650", + "creationTimestamp": "2017-01-11T12:37:25.114-08:00", + "name": "rhel-7-v20170110", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-01-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170124" + }, + "status": "READY", + "archiveSizeBytes": "5004687468", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170110", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "4185750815399104239", + "creationTimestamp": "2017-01-24T16:23:28.050-08:00", + "name": "rhel-7-v20170124", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-01-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170222" + }, + "status": "READY", + "archiveSizeBytes": "5246346672", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170124", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "1244415271016594666", + "creationTimestamp": "2017-02-22T17:59:33.507-08:00", + "name": "rhel-7-v20170222", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-02-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170227" + }, + "status": "READY", + "archiveSizeBytes": "5325290946", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170222", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "5447254904338627193", + "creationTimestamp": "2017-02-28T15:15:34.620-08:00", + "name": "rhel-7-v20170227", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-02-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170327" + }, + "status": "READY", + "archiveSizeBytes": "5257800108", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170227", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "1693021104693017782", + "creationTimestamp": "2017-03-28T13:06:49.960-07:00", + "name": "rhel-7-v20170327", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-03-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170426" + }, + "status": "READY", + "archiveSizeBytes": "5315611482", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170327", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "4558651966396299575", + "creationTimestamp": "2017-04-27T12:34:48.151-07:00", + "name": "rhel-7-v20170426", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-04-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170523" + }, + "status": "READY", + "archiveSizeBytes": "6161383800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170426", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "4861015877325717207", + "creationTimestamp": "2017-05-24T10:17:44.096-07:00", + "name": "rhel-7-v20170523", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-05-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170616" + }, + "status": "READY", + "archiveSizeBytes": "6957624156", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170523", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "551511276676037797", + "creationTimestamp": "2017-06-19T09:56:42.780-07:00", + "name": "rhel-7-v20170616", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-06-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170620" + }, + "status": "READY", + "archiveSizeBytes": "7841851080", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170616", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "7089088719715836197", + "creationTimestamp": "2017-06-20T15:20:58.069-07:00", + "name": "rhel-7-v20170620", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-06-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170717" + }, + "status": "READY", + "archiveSizeBytes": "8692744074", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170620", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "1910604066325757958", + "creationTimestamp": "2017-07-18T10:01:29.529-07:00", + "name": "rhel-7-v20170717", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-07-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170719" + }, + "status": "READY", + "archiveSizeBytes": "7851897914", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170717", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "8716818090094125447", + "creationTimestamp": "2017-07-19T15:38:32.795-07:00", + "name": "rhel-7-v20170719", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-07-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170816" + }, + "status": "READY", + "archiveSizeBytes": "8018534944", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170719", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "1896082172003503922", + "creationTimestamp": "2017-08-17T12:43:25.419-07:00", + "name": "rhel-7-v20170816", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-08-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170829" + }, + "status": "READY", + "archiveSizeBytes": "10839850701", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170816", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "6138943513176000512", + "creationTimestamp": "2017-08-30T10:33:35.969-07:00", + "name": "rhel-7-v20170829", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-08-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170918" + }, + "status": "READY", + "archiveSizeBytes": "10605699553", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170829", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "7073024992265168317", + "creationTimestamp": "2017-09-19T11:00:50.749-07:00", + "name": "rhel-7-v20170918", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-09-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170930" + }, + "status": "READY", + "archiveSizeBytes": "11630105088", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170918", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "6091822164258668332", + "creationTimestamp": "2017-09-30T22:48:51.543-07:00", + "name": "rhel-7-v20170930", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-09-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20171002" + }, + "status": "READY", + "archiveSizeBytes": "11468302080", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20170930", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "3015487744701853369", + "creationTimestamp": "2017-10-02T16:48:39.121-07:00", + "name": "rhel-7-v20171002", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-10-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20171018" + }, + "status": "READY", + "archiveSizeBytes": "11689880832", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20171002", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "5465013511795280387", + "creationTimestamp": "2017-10-19T16:27:40.141-07:00", + "name": "rhel-7-v20171018", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-10-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20171025" + }, + "status": "READY", + "archiveSizeBytes": "11595270912", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20171018", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "457988501235804738", + "creationTimestamp": "2017-10-26T10:00:29.811-07:00", + "name": "rhel-7-v20171025", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-10-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20171129" + }, + "status": "READY", + "archiveSizeBytes": "11539360512", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20171025", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "7362929645404941901", + "creationTimestamp": "2017-11-30T10:40:34.548-08:00", + "name": "rhel-7-v20171129", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-11-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20171213" + }, + "status": "READY", + "archiveSizeBytes": "12277957120", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20171129", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "9106551458364327323", + "creationTimestamp": "2017-12-14T09:57:08.706-08:00", + "name": "rhel-7-v20171213", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2017-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180104" + }, + "status": "READY", + "archiveSizeBytes": "12284245376", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20171213", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "2925468919510804304", + "creationTimestamp": "2018-01-04T13:16:47.958-08:00", + "name": "rhel-7-v20180104", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 2018-01-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180129" + }, + "status": "READY", + "archiveSizeBytes": "12645594624", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180104", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "3081418112581306169", + "creationTimestamp": "2018-01-30T10:30:47.070-08:00", + "name": "rhel-7-v20180129", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on v20180129", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180227" + }, + "status": "READY", + "archiveSizeBytes": "14513640960", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180129", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "1493841420777856971", + "creationTimestamp": "2018-02-28T13:37:41.206-08:00", + "name": "rhel-7-v20180227", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 20180227", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180314" + }, + "status": "READY", + "archiveSizeBytes": "12940220160", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180227", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "3693619555483402296", + "creationTimestamp": "2018-03-16T10:28:56.009-07:00", + "name": "rhel-7-v20180314", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 20180314", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180401" + }, + "status": "READY", + "archiveSizeBytes": "13255856640", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180314", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "905756021663494910", + "creationTimestamp": "2018-04-01T23:22:10.036-07:00", + "name": "rhel-7-v20180401", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 20180401", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180507" + }, + "status": "READY", + "archiveSizeBytes": "13351664640", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180401", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "2178184067862587299", + "creationTimestamp": "2018-05-07T15:55:09.227-07:00", + "name": "rhel-7-v20180507", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 20180507", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "15102332160", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180507", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "5935304489264100356", + "creationTimestamp": "2018-05-09T16:57:32.173-07:00", + "name": "rhel-7-v20180509", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 20180509", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180510" + }, + "status": "READY", + "archiveSizeBytes": "15377544960", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180509", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + }, + { + "kind": "compute#image", + "id": "532520468831844769", + "creationTimestamp": "2018-05-10T20:00:30.911-07:00", + "name": "rhel-7-v20180510", + "description": "Red Hat, Red Hat Enterprise Linux, 7, x86_64 built on 20180510", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "15145877760", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/licenses/rhel-7-server" + ], + "family": "rhel-7", + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images/rhel-7-v20180510", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000006" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/rhel-cloud/global/images" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:01 GMT + recorded_at: Fri, 11 May 2018 14:32:53 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/europe-west1/targetPools + uri: https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:53 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:01 GMT + - Fri, 11 May 2018 14:32:53 GMT Date: - - Fri, 02 Jun 2017 19:26:01 GMT + - Fri, 11 May 2018 14:32:53 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/pTQVXiCv9SLidxSDtQytWuJzpO8"' + - '"JndRQ_-Ya95B1FuuKUtHHepY_ik=/w73gSS2GUzh83bNg1MtbiQ5iiz0="' Vary: - Origin - X-Origin @@ -6983,52 +30699,278 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOQQ6CMBAA730FqVfLpsETb+DgFwDXulLZprvQg/HvIjHx - Ad4nM/M0lZ1ovti2siM/0qJ40D4H1DNz7EjUHjeEdiBlvuOoAiOtFJ0uAzrv - m8afIGMgngVwyZzQFRT18BPJbhGM147m6eO6qSZpAUopdWAOEftEUm8P8P2A - 1cM/RfMybyWgpZ7eAAAA + encoding: UTF-8 + string: | + { + "kind": "compute#imageList", + "id": "projects/suse-cloud/global/images", + "items": [ + { + "kind": "compute#image", + "id": "911815082410225426", + "creationTimestamp": "2017-06-20T23:28:13.411-07:00", + "name": "sles-11-sp4-v20170621", + "description": "SUSE, SUSE Linux Enterprise Server, 11 SP4, x86_64 built on 2017-06-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images/sles-11-sp4-v20171211", + "deleted": "2018-06-11T00:00:00Z" + }, + "status": "READY", + "archiveSizeBytes": "3787050140", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/licenses/sles-11" + ], + "family": "sles-11", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images/sles-11-sp4-v20170621", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000004" + ] + }, + { + "kind": "compute#image", + "id": "4446857339177493242", + "creationTimestamp": "2017-12-11T11:27:18.218-08:00", + "name": "sles-11-sp4-v20171211", + "description": "SUSE, SUSE Linux Enterprise Server, 11 SP4, x86_64 built on 2017-12-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images/sles-11-sp4-v20180104", + "deleted": "2018-07-04T00:00:00" + }, + "status": "READY", + "archiveSizeBytes": "4909176896", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/licenses/sles-11" + ], + "family": "sles-11", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images/sles-11-sp4-v20171211", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000004" + ] + }, + { + "kind": "compute#image", + "id": "805247250004646274", + "creationTimestamp": "2018-01-04T14:15:10.717-08:00", + "name": "sles-11-sp4-v20180104", + "description": "SUSE, SUSE Linux Enterprise Server, 11 SP4, x86_64 built on 2018-01-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "4910513920", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/licenses/sles-11" + ], + "family": "sles-11", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images/sles-11-sp4-v20180104", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000004" + ] + }, + { + "kind": "compute#image", + "id": "7433805363283328507", + "creationTimestamp": "2017-06-19T23:39:16.011-07:00", + "name": "sles-12-sp2-v20170620", + "description": "SUSE, SUSE Linux Enterprise Server, 12 SP2, x86_64 built on 2017-06-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images/sles-12-sp3-v20170907", + "deleted": "2018-03-07T00:00:00Z" + }, + "status": "READY", + "archiveSizeBytes": "4445102403", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/licenses/sles-12" + ], + "family": "sles-12", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images/sles-12-sp2-v20170620", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000008" + ] + }, + { + "kind": "compute#image", + "id": "3500042111034381195", + "creationTimestamp": "2017-09-07T09:01:40.773-07:00", + "name": "sles-12-sp3-v20170907", + "description": "SUSE, SUSE Linux Enterprise Server, 12 SP3, x86_64 built on 2017-09-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images/sles-12-sp3-v20171211", + "deleted": "2018-06-11T00:00:00Z" + }, + "status": "READY", + "archiveSizeBytes": "6206333952", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/licenses/sles-12" + ], + "family": "sles-12", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images/sles-12-sp3-v20170907", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000008" + ] + }, + { + "kind": "compute#image", + "id": "6234013383029648254", + "creationTimestamp": "2017-12-11T10:59:30.046-08:00", + "name": "sles-12-sp3-v20171211", + "description": "SUSE, SUSE Linux Enterprise Server, 12 SP3, x86_64 built on 2017-12-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images/sles-12-sp3-v20180104", + "deleted": "2018-07-04T00:00:00" + }, + "status": "READY", + "archiveSizeBytes": "6738295616", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/licenses/sles-12" + ], + "family": "sles-12", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images/sles-12-sp3-v20171211", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000008" + ] + }, + { + "kind": "compute#image", + "id": "5760242249353106914", + "creationTimestamp": "2018-01-04T05:24:29.999-08:00", + "name": "sles-12-sp3-v20180104", + "description": "SUSE, SUSE Linux Enterprise Server, 12 SP3, x86_64 built on 2018-01-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images/sles-12-sp3-v20180214", + "deleted": "2018-08-14T00:00:00Z" + }, + "status": "READY", + "archiveSizeBytes": "6738906304", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/licenses/sles-12" + ], + "family": "sles-12", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images/sles-12-sp3-v20180104", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000008" + ] + }, + { + "kind": "compute#image", + "id": "8166618189412292921", + "creationTimestamp": "2018-02-14T08:46:14.621-08:00", + "name": "sles-12-sp3-v20180214", + "description": "SUSE, SUSE Linux Enterprise Server, 12 SP3, x86_64 built on 2018-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "7433418240", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/licenses/sles-12" + ], + "family": "sles-12", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images/sles-12-sp3-v20180214", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000008" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-cloud/global/images" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:01 GMT + recorded_at: Fri, 11 May 2018 14:32:53 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-central1/targetPools + uri: https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:53 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:02 GMT + - Fri, 11 May 2018 14:32:53 GMT Date: - - Fri, 02 Jun 2017 19:26:02 GMT + - Fri, 11 May 2018 14:32:53 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/_JcyyEIp_0eh9cx704ttvBeGa5U"' + - '"5J2ZIZ2sU_no3QWn5xwXbpgMCto=/l4uAyco6hDtBP1SlnVkEzcPYsEA="' Vary: - Origin - X-Origin @@ -7045,56 +30987,365 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAL2SPU/DMBCG9/yKKKy4jpM0DdkQQmKoCkM3xOC4l8TUsaPY - aQVV/zt260JZkJAKg5f7eJ+797wLwmjN5Soqw4iprh8NXBk6NGCelBJzrk10 - bUv4oaAf1CswozHjGy6QGStAhKQpyfAADVdS41EjBtIMVBD8paOPIgY6bXWe - gzDc2fcT2TWEJ+4szUg6m8Z5kWckIdm0mPo8G4AaC17yDrShXe/Kk5jkKL5B - Sb4kaRmTMsknRRGjeFbGsW+UtANXWyuFROWDK9Bs4L0TdDkfPa7mAq0xvS4x - 3m63k0apRgDtuZ7Y6bHfAG8I/p1LHtICFaa9a4GtTxaFFwA2QlVUYKfzcEbA - bu0jkrlA5HAv3nJpjZQMLjnGu5LwbWtU4U8O1mMlwSBjL3g+iAatrVu3dc0l - N2/uAIvHxX10yop6zuX6r+5y/nux/yUWvA8O4/0rPgr2wQcFdxoVqAMAAA== + encoding: UTF-8 + string: | + { + "kind": "compute#imageList", + "id": "projects/suse-sap-cloud/global/images", + "items": [ + { + "kind": "compute#image", + "id": "7318937910352812283", + "creationTimestamp": "2017-05-12T05:09:56.953-07:00", + "name": "sles-12-sp1-sap-v20170512", + "description": "SUSE, SUSE Linux Enterprise Server 12 SP1 For SAP, x86_64, built on 2017-05-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp1-sap-v20170620", + "deleted": "2017-12-20T00:00:00Z" + }, + "status": "READY", + "archiveSizeBytes": "5444831616", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/licenses/sles-sap-12" + ], + "family": "sles-12-sp1-sap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp1-sap-v20170512", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "4079932016749305610" + ] + }, + { + "kind": "compute#image", + "id": "3172173378641812622", + "creationTimestamp": "2017-06-20T01:52:49.618-07:00", + "name": "sles-12-sp1-sap-v20170620", + "description": "SUSE, SUSE Linux Enterprise Server 12 SP1 For SAP, x86_64, built on 2017-06-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp2-sap-v20171211", + "deleted": "2018-06-11T00:00:00Z" + }, + "status": "READY", + "archiveSizeBytes": "6157612422", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/licenses/sles-sap-12" + ], + "family": "sles-12-sp1-sap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp1-sap-v20170620", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "4079932016749305610" + ] + }, + { + "kind": "compute#image", + "id": "6501646174123291314", + "creationTimestamp": "2017-06-20T00:18:53.789-07:00", + "name": "sles-12-sp2-sap-v20170620", + "description": "SUSE, SUSE Linux Enterprise Server 12 SP2 For SAP, x86_64, built on 2017-06-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp2-sap-v20171109", + "deleted": "2018-05-09T00:00:00Z" + }, + "status": "READY", + "archiveSizeBytes": "6359847534", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/licenses/sles-sap-12" + ], + "family": "sles-12-sp2-sap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp2-sap-v20170620", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "4079932016749305610" + ] + }, + { + "kind": "compute#image", + "id": "8526608681585464424", + "creationTimestamp": "2017-11-09T06:47:35.463-08:00", + "name": "sles-12-sp2-sap-v20171109", + "description": "SUSE, SUSE Linux Enterprise Server 12 SP2 For SAP, x86_64, built on 2017-11-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp2-sap-v20171211", + "deleted": "2018-06-11T00:00:00Z" + }, + "status": "READY", + "archiveSizeBytes": "9518976064", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/licenses/sles-sap-12" + ], + "family": "sles-12-sp2-sap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp2-sap-v20171109", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "4079932016749305610" + ] + }, + { + "kind": "compute#image", + "id": "4012954656031601276", + "creationTimestamp": "2017-12-11T10:21:07.612-08:00", + "name": "sles-12-sp2-sap-v20171211", + "description": "SUSE, SUSE Linux Enterprise Server 12 SP2 For SAP, x86_64, built on 2017-12-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp2-sap-v20180104", + "deleted": "2018-07-04T00:00:00" + }, + "status": "READY", + "archiveSizeBytes": "9545835520", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/licenses/sles-sap-12" + ], + "family": "sles-12-sp2-sap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp2-sap-v20171211", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "4079932016749305610" + ] + }, + { + "kind": "compute#image", + "id": "2487775128862314634", + "creationTimestamp": "2018-01-04T10:11:49.719-08:00", + "name": "sles-12-sp2-sap-v20180104", + "description": "SUSE, SUSE Linux Enterprise Server 12 SP2 For SAP, x86_64, built on 2018-01-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp2-sap-v20180214", + "deleted": "2018-08-14T00:00:00Z" + }, + "status": "READY", + "archiveSizeBytes": "9530081600", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/licenses/sles-sap-12" + ], + "family": "sles-12-sp2-sap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp2-sap-v20180104", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "4079932016749305610" + ] + }, + { + "kind": "compute#image", + "id": "1678965261537456422", + "creationTimestamp": "2018-02-14T11:36:42.181-08:00", + "name": "sles-12-sp2-sap-v20180214", + "description": "SUSE, SUSE Linux Enterprise Server 12 SP2 For SAP, x86_64, built on 2018-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "10610274240", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/licenses/sles-sap-12" + ], + "family": "sles-12-sp2-sap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp2-sap-v20180214", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "4079932016749305610" + ] + }, + { + "kind": "compute#image", + "id": "4318695905950446112", + "creationTimestamp": "2017-09-07T11:15:43.193-07:00", + "name": "sles-12-sp3-sap-v20170907", + "description": "SUSE, SUSE Linux Enterprise Server 12 SP3 For SAP, x86_64, built on 2017-09-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp3-sap-v20171211", + "deleted": "2018-06-11T00:00:00Z" + }, + "status": "READY", + "archiveSizeBytes": "8850898176", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/licenses/sles-sap-12" + ], + "family": "sles-12-sp3-sap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp3-sap-v20170907", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "4079932016749305610" + ] + }, + { + "kind": "compute#image", + "id": "380776718761423385", + "creationTimestamp": "2017-12-11T10:22:46.193-08:00", + "name": "sles-12-sp3-sap-v20171211", + "description": "SUSE, SUSE Linux Enterprise Server 12 SP3 For SAP, x86_64, built on 2017-12-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp3-sap-v20180104", + "deleted": "2018-07-04T00:00:00" + }, + "status": "READY", + "archiveSizeBytes": "9606211264", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/licenses/sles-sap-12" + ], + "family": "sles-12-sp3-sap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp3-sap-v20171211", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "4079932016749305610" + ] + }, + { + "kind": "compute#image", + "id": "2937525077394321487", + "creationTimestamp": "2018-01-04T07:56:17.059-08:00", + "name": "sles-12-sp3-sap-v20180104", + "description": "SUSE, SUSE Linux Enterprise Server 12 SP3 For SAP, x86_64, built on 2018-01-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp3-sap-v20180214", + "deleted": "2018-08-14T00:00:00Z" + }, + "status": "READY", + "archiveSizeBytes": "9609860416", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/licenses/sles-sap-12" + ], + "family": "sles-12-sp3-sap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp3-sap-v20180104", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "4079932016749305610" + ] + }, + { + "kind": "compute#image", + "id": "1354274246585077270", + "creationTimestamp": "2018-02-14T09:25:13.871-08:00", + "name": "sles-12-sp3-sap-v20180214", + "description": "SUSE, SUSE Linux Enterprise Server 12 SP3 For SAP, x86_64, built on 2018-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "10651082880", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/licenses/sles-sap-12" + ], + "family": "sles-12-sp3-sap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images/sles-12-sp3-sap-v20180214", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "4079932016749305610" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/suse-sap-cloud/global/images" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:02 GMT + recorded_at: Fri, 11 May 2018 14:32:53 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-east1/targetPools + uri: https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:54 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:02 GMT + - Fri, 11 May 2018 14:32:54 GMT Date: - - Fri, 02 Jun 2017 19:26:02 GMT + - Fri, 11 May 2018 14:32:54 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/hu7RNu1yOqybIJ15iJm4diRCTp8"' + - '"nbQK9HTp-4sxbU3_DKxe0-nV2Uw=/IN71wvkzSrWR-FyrWgg6uCclOEE="' Vary: - Origin - X-Origin @@ -7111,52 +31362,7176 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAJ2OQQ6CMBAA730FqVdh0+CJN3DwCwXXulLZprvQg/HvIjHx - 7n0yM09T2Ynmi+0qO/IjLYoH9TmgnpljT6L2uCG0AynzHUcVGGmlWOsyYO1c - 27oTZAzEs8AiNXpRBz+J7AbBeO1pnj6em2qSDqCU0gTmENEnkmbrw/cBVgf/ - 1szLvAGxC4ab1gAAAA== + encoding: UTF-8 + string: | + { + "kind": "compute#imageList", + "id": "projects/ubuntu-os-cloud/global/images", + "items": [ + { + "kind": "compute#image", + "id": "15508054221909398824", + "creationTimestamp": "2014-10-29T09:51:42.018-07:00", + "name": "ubuntu-1204-precise-v20141028", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "378614228", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20141028", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3216640293232429175", + "creationTimestamp": "2014-11-07T00:48:18.673-08:00", + "name": "ubuntu-1204-precise-v20141031", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1137275331", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20141031", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "12756823774499736482", + "creationTimestamp": "2014-12-17T11:31:59.126-08:00", + "name": "ubuntu-1204-precise-v20141212", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2014-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1140352383", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20141212", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "14121032340541889299", + "creationTimestamp": "2015-01-27T18:55:10.796-08:00", + "name": "ubuntu-1204-precise-v20150127", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2015-01-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "829909758", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20150127", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2386831698028887165", + "creationTimestamp": "2015-03-19T05:35:30.658-07:00", + "name": "ubuntu-1204-precise-v20150316", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2015-03-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "829663551", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20150316", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6455848358080502426", + "creationTimestamp": "2015-06-16T20:07:33.716-07:00", + "name": "ubuntu-1204-precise-v20150616", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2015-06-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "835119945", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20150616", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6310562151466732941", + "creationTimestamp": "2015-07-09T10:46:10.080-07:00", + "name": "ubuntu-1204-precise-v20150625", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2015-06-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "834906141", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20150625", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6817443334064867124", + "creationTimestamp": "2015-09-02T11:03:07.119-07:00", + "name": "ubuntu-1204-precise-v20150831c", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2015-08-31", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "835425606", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20150831c", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6747491880321094431", + "creationTimestamp": "2015-09-11T03:33:20.475-07:00", + "name": "ubuntu-1204-precise-v20150910", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2015-09-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "835578681", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20150910", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9019132029102385932", + "creationTimestamp": "2015-11-23T10:07:31.673-08:00", + "name": "ubuntu-1204-precise-v20151119", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2015-11-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1126723472", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20151119", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5646101938739386611", + "creationTimestamp": "2016-01-15T09:02:20.509-08:00", + "name": "ubuntu-1204-precise-v20160114", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-01-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1128079220", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160114", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1429972787550354761", + "creationTimestamp": "2016-02-17T01:55:50.604-08:00", + "name": "ubuntu-1204-precise-v20160217a", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-02-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1129228232", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160217a", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2929534398172852987", + "creationTimestamp": "2016-02-23T13:16:04.137-08:00", + "name": "ubuntu-1204-precise-v20160222", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-02-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1128489872", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160222", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9086351162081233583", + "creationTimestamp": "2016-03-11T08:37:20.565-08:00", + "name": "ubuntu-1204-precise-v20160302", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-03-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1130489824", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160302", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1107845911021243484", + "creationTimestamp": "2016-03-15T04:32:03.673-07:00", + "name": "ubuntu-1204-precise-v20160311", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-03-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1129012116", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160311", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8366141810044902212", + "creationTimestamp": "2016-03-15T17:15:39.429-07:00", + "name": "ubuntu-1204-precise-v20160315", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-03-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1128706980", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160315", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1241533489733953957", + "creationTimestamp": "2016-03-29T03:22:02.763-07:00", + "name": "ubuntu-1204-precise-v20160320", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-03-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1130052532", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160320", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5982113160362967745", + "creationTimestamp": "2016-05-10T17:26:22.966-07:00", + "name": "ubuntu-1204-precise-v20160509", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1129902396", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160509", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6554285688468491302", + "creationTimestamp": "2016-05-17T03:30:33.632-07:00", + "name": "ubuntu-1204-precise-v20160516", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-05-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1130747192", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160516", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7590680104661295274", + "creationTimestamp": "2016-06-10T22:14:45.904-07:00", + "name": "ubuntu-1204-precise-v20160610a", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-06-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1145132344", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160610a", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7861533464038731826", + "creationTimestamp": "2016-06-28T03:18:05.075-07:00", + "name": "ubuntu-1204-precise-v20160627", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-06-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1146016068", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160627", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5943368629743377082", + "creationTimestamp": "2016-08-02T02:13:57.768-07:00", + "name": "ubuntu-1204-precise-v20160801", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-08-01", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1431638398", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160801", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5041719526748866578", + "creationTimestamp": "2016-08-09T08:30:05.907-07:00", + "name": "ubuntu-1204-precise-v20160808", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1431157093", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160808", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3732196810092447526", + "creationTimestamp": "2016-08-30T09:52:25.961-07:00", + "name": "ubuntu-1204-precise-v20160829", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-08-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1431856028", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160829", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2042641660362132426", + "creationTimestamp": "2016-09-20T06:09:57.892-07:00", + "name": "ubuntu-1204-precise-v20160919", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-09-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1432676488", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20160919", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6519148054209194100", + "creationTimestamp": "2016-10-11T05:10:03.017-07:00", + "name": "ubuntu-1204-precise-v20161010", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1719297834", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20161010", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "739593164471700242", + "creationTimestamp": "2016-10-20T14:24:13.641-07:00", + "name": "ubuntu-1204-precise-v20161020", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-10-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1721091816", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20161020", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3219106126939937707", + "creationTimestamp": "2016-11-10T04:17:08.528-08:00", + "name": "ubuntu-1204-precise-v20161109", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-11-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1719526692", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20161109", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6985507796580937549", + "creationTimestamp": "2016-12-01T04:03:46.936-08:00", + "name": "ubuntu-1204-precise-v20161130", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-11-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1720125774", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20161130", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7285832916602140770", + "creationTimestamp": "2016-12-06T01:36:13.383-08:00", + "name": "ubuntu-1204-precise-v20161205", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2016-12-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1720660266", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20161205", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3997000458882441376", + "creationTimestamp": "2017-01-06T01:07:27.578-08:00", + "name": "ubuntu-1204-precise-v20170104", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2017-01-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1721071872", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170104", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000009" + ] + }, + { + "kind": "compute#image", + "id": "7841316395795812454", + "creationTimestamp": "2017-01-11T14:15:37.211-08:00", + "name": "ubuntu-1204-precise-v20170110", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2017-01-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1722720000", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170110", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000009" + ] + }, + { + "kind": "compute#image", + "id": "9020487963116457992", + "creationTimestamp": "2017-02-02T18:45:59.595-08:00", + "name": "ubuntu-1204-precise-v20170202", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2017-02-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1721265492", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170202", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000009" + ] + }, + { + "kind": "compute#image", + "id": "1029631897938017454", + "creationTimestamp": "2017-02-21T01:02:57.991-08:00", + "name": "ubuntu-1204-precise-v20170220", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2017-02-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1721494272", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170220", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000009" + ] + }, + { + "kind": "compute#image", + "id": "8999630201763688916", + "creationTimestamp": "2017-02-22T09:49:47.312-08:00", + "name": "ubuntu-1204-precise-v20170221", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2017-02-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1723091760", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170221", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000009" + ] + }, + { + "kind": "compute#image", + "id": "4719667163566025290", + "creationTimestamp": "2017-03-08T06:26:45.070-08:00", + "name": "ubuntu-1204-precise-v20170307", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2017-03-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1723104114", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170307", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000009" + ] + }, + { + "kind": "compute#image", + "id": "105270775961884565", + "creationTimestamp": "2017-03-30T17:57:30.844-07:00", + "name": "ubuntu-1204-precise-v20170330", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2017-03-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "1722689292", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170330", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000009" + ] + }, + { + "kind": "compute#image", + "id": "3321914733331461911", + "creationTimestamp": "2017-04-18T05:43:36.580-07:00", + "name": "ubuntu-1204-precise-v20170417", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "2008984500", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000009" + ] + }, + { + "kind": "compute#image", + "id": "8317221544123080787", + "creationTimestamp": "2017-04-28T03:51:40.951-07:00", + "name": "ubuntu-1204-precise-v20170427", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2017-04-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "2295906592", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170427", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000009" + ] + }, + { + "kind": "compute#image", + "id": "8413149917851431343", + "creationTimestamp": "2017-05-03T01:05:20.459-07:00", + "name": "ubuntu-1204-precise-v20170502", + "description": "Canonical, Ubuntu, 12.04 LTS, amd64 precise image built on 2017-05-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170502" + }, + "status": "READY", + "archiveSizeBytes": "2278613256", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1204-precise" + ], + "family": "ubuntu-1204-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1204-precise-v20170502", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000009" + ] + }, + { + "kind": "compute#image", + "id": "17781692821175088041", + "creationTimestamp": "2014-10-29T09:51:42.072-07:00", + "name": "ubuntu-1404-trusty-v20141028", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "375105326", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20141028", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6500942514398264968", + "creationTimestamp": "2014-11-07T00:48:04.471-08:00", + "name": "ubuntu-1404-trusty-v20141031a", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1015791618", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20141031a", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "14921913565797044708", + "creationTimestamp": "2014-12-17T11:31:37.868-08:00", + "name": "ubuntu-1404-trusty-v20141212", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2014-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "981936603", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20141212", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "475552643902376779", + "creationTimestamp": "2015-01-28T06:04:17.376-08:00", + "name": "ubuntu-1404-trusty-v20150127", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2015-01-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "676214322", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20150127", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "17933712206647486913", + "creationTimestamp": "2015-01-30T08:54:55.616-08:00", + "name": "ubuntu-1404-trusty-v20150128", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2015-01-28", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "676453218", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20150128", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2679723745784331362", + "creationTimestamp": "2015-03-19T05:35:25.731-07:00", + "name": "ubuntu-1404-trusty-v20150316", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2015-03-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "999155925", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20150316", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6306536757793066381", + "creationTimestamp": "2015-07-09T10:46:10.231-07:00", + "name": "ubuntu-1404-trusty-v20150625", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2015-06-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1274067336", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20150625", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1789711783660798921", + "creationTimestamp": "2015-08-06T08:28:38.092-07:00", + "name": "ubuntu-1404-trusty-v20150805", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2015-08-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1275097266", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20150805", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6714790579148590655", + "creationTimestamp": "2015-09-02T10:24:32.850-07:00", + "name": "ubuntu-1404-trusty-v20150901a", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2015-09-01", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1282097880", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20150901a", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7281760888248275729", + "creationTimestamp": "2015-09-11T03:33:34.848-07:00", + "name": "ubuntu-1404-trusty-v20150909a", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2015-09-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1282298577", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20150909a", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2410217017520401980", + "creationTimestamp": "2015-11-16T09:22:27.269-08:00", + "name": "ubuntu-1404-trusty-v20151113", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2015-11-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1724083588", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20151113", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6925262590989082798", + "creationTimestamp": "2016-01-15T08:28:49.704-08:00", + "name": "ubuntu-1404-trusty-v20160114e", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-01-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1726576024", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160114e", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1272974892314773266", + "creationTimestamp": "2016-02-17T05:47:41.158-08:00", + "name": "ubuntu-1404-trusty-v20160217a", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-02-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1730391464", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160217a", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4544136866733071412", + "creationTimestamp": "2016-02-23T01:14:03.046-08:00", + "name": "ubuntu-1404-trusty-v20160222", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-02-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1729329556", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160222", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4210214708637081552", + "creationTimestamp": "2016-03-07T07:41:51.494-08:00", + "name": "ubuntu-1404-trusty-v20160304", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-03-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1729452488", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160304", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6708521331300483188", + "creationTimestamp": "2016-03-14T02:04:27.700-07:00", + "name": "ubuntu-1404-trusty-v20160311", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-03-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1727945156", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160311", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7515001840279892044", + "creationTimestamp": "2016-03-14T21:25:07.759-07:00", + "name": "ubuntu-1404-trusty-v20160314", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-03-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1729916368", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160314", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3457333596235820605", + "creationTimestamp": "2016-04-06T11:09:22.852-07:00", + "name": "ubuntu-1404-trusty-v20160406", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-04-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1346486644", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160406", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3752383929481181580", + "creationTimestamp": "2016-05-10T00:01:55.608-07:00", + "name": "ubuntu-1404-trusty-v20160509a", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1418278348", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160509a", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6172037181127218784", + "creationTimestamp": "2016-05-17T02:46:55.586-07:00", + "name": "ubuntu-1404-trusty-v20160516", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-05-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1418330552", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160516", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3514466015716909023", + "creationTimestamp": "2016-06-02T14:12:16.608-07:00", + "name": "ubuntu-1404-trusty-v20160602", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-06-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1418338700", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160602", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7891856074883947701", + "creationTimestamp": "2016-06-10T08:52:58.035-07:00", + "name": "ubuntu-1404-trusty-v20160610", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-06-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1434012104", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160610", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2567116472120071468", + "creationTimestamp": "2016-06-21T00:24:51.121-07:00", + "name": "ubuntu-1404-trusty-v20160620", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-06-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1433333224", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160620", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "514230943400034947", + "creationTimestamp": "2016-06-28T01:59:24.637-07:00", + "name": "ubuntu-1404-trusty-v20160627", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-06-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1434843596", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160627", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6301419677885589795", + "creationTimestamp": "2016-08-10T09:35:24.212-07:00", + "name": "ubuntu-1404-trusty-v20160809a", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-08-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1809068428", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160809a", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4815989652132276633", + "creationTimestamp": "2016-09-19T18:57:10.907-07:00", + "name": "ubuntu-1404-trusty-v20160919", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-09-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1808442448", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20160919", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9105792713815615402", + "creationTimestamp": "2016-10-10T20:15:17.752-07:00", + "name": "ubuntu-1404-trusty-v20161010", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2174757390", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20161010", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3816372315007264024", + "creationTimestamp": "2016-10-20T12:33:11.397-07:00", + "name": "ubuntu-1404-trusty-v20161020", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-10-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2172517902", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20161020", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4132601973802160883", + "creationTimestamp": "2016-11-09T19:40:12.970-08:00", + "name": "ubuntu-1404-trusty-v20161109", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-11-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2175356424", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20161109", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5210169402482371538", + "creationTimestamp": "2016-11-30T19:13:01.330-08:00", + "name": "ubuntu-1404-trusty-v20161130", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-11-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2173931022", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20161130", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "542245636337778463", + "creationTimestamp": "2016-12-06T01:16:32.661-08:00", + "name": "ubuntu-1404-trusty-v20161205", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-12-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2174921724", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20161205", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4359046299060600464", + "creationTimestamp": "2016-12-14T04:52:15.877-08:00", + "name": "ubuntu-1404-trusty-v20161213", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2016-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2174775822", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20161213", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "5545043226551084817", + "creationTimestamp": "2017-01-05T15:42:54.834-08:00", + "name": "ubuntu-1404-trusty-v20170104", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-01-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2177595858", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170104", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "6861781767445558165", + "creationTimestamp": "2017-01-10T17:42:18.054-08:00", + "name": "ubuntu-1404-trusty-v20170110", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-01-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2178030600", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170110", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "186336080352396683", + "creationTimestamp": "2017-02-02T19:39:16.340-08:00", + "name": "ubuntu-1404-trusty-v20170202a", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-02-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2182689246", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170202a", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "4040766497738850523", + "creationTimestamp": "2017-02-20T20:12:36.059-08:00", + "name": "ubuntu-1404-trusty-v20170220", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-02-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2206670886", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170220", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "508606614943241173", + "creationTimestamp": "2017-03-01T03:15:06.999-08:00", + "name": "ubuntu-1404-trusty-v20170222", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-02-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2206276134", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170222", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "6830662302716539974", + "creationTimestamp": "2017-03-07T20:38:01.514-08:00", + "name": "ubuntu-1404-trusty-v20170307", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-03-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2205829206", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170307", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "8484391253335199773", + "creationTimestamp": "2017-03-23T17:57:22.718-07:00", + "name": "ubuntu-1404-trusty-v20170323", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-03-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2205972054", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170323", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "1192186420005365541", + "creationTimestamp": "2017-03-28T23:52:58.643-07:00", + "name": "ubuntu-1404-trusty-v20170328", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-03-28", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2207535708", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170328", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "99364435720704352", + "creationTimestamp": "2017-03-30T09:17:19.854-07:00", + "name": "ubuntu-1404-trusty-v20170330", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-03-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2207527962", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170330", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "3761539820447866867", + "creationTimestamp": "2017-04-05T18:59:56.357-07:00", + "name": "ubuntu-1404-trusty-v20170405", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-04-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2206552650", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170405", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "5905941464341485196", + "creationTimestamp": "2017-04-24T18:37:39.138-07:00", + "name": "ubuntu-1404-trusty-v20170424", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-04-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2575375206", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170424", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "3313806595308987017", + "creationTimestamp": "2017-05-08T09:27:18.990-07:00", + "name": "ubuntu-1404-trusty-v20170505", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-05-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2945860248", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170505", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "2316077965801198422", + "creationTimestamp": "2017-05-17T22:14:33.901-07:00", + "name": "ubuntu-1404-trusty-v20170517", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-05-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2943980168", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170517", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "7996504215736621029", + "creationTimestamp": "2017-06-19T21:48:10.443-07:00", + "name": "ubuntu-1404-trusty-v20170619", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-06-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "3392244873", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170619", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "1123173468179155675", + "creationTimestamp": "2017-07-04T13:01:56.429-07:00", + "name": "ubuntu-1404-trusty-v20170703", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-07-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "3769288868", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170703", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "3177802869583855640", + "creationTimestamp": "2017-07-18T23:40:55.390-07:00", + "name": "ubuntu-1404-trusty-v20170718", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-07-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "3765981538", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170718", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "334303029474822642", + "creationTimestamp": "2017-08-02T22:39:41.928-07:00", + "name": "ubuntu-1404-trusty-v20170802", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-08-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4145437708", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170802", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "4703103544891875760", + "creationTimestamp": "2017-08-04T09:22:55.033-07:00", + "name": "ubuntu-1404-trusty-v20170803", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-08-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4144367683", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170803", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "8441195152342832226", + "creationTimestamp": "2017-08-08T00:38:53.337-07:00", + "name": "ubuntu-1404-trusty-v20170807", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-08-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4145944643", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170807", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "639771690659980443", + "creationTimestamp": "2017-08-11T13:58:28.153-07:00", + "name": "ubuntu-1404-trusty-v20170811", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-08-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4155093827", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170811", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "7065557036271565467", + "creationTimestamp": "2017-08-18T21:54:12.942-07:00", + "name": "ubuntu-1404-trusty-v20170818", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-08-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4158588516", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170818", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "4916181094396942776", + "creationTimestamp": "2017-08-31T21:51:35.827-07:00", + "name": "ubuntu-1404-trusty-v20170831", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-08-31", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4156721618", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170831", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "8896610557879979712", + "creationTimestamp": "2017-09-18T22:50:39.888-07:00", + "name": "ubuntu-1404-trusty-v20170918", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-09-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4585807872", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20170918", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "4713331257892672858", + "creationTimestamp": "2017-10-10T22:27:17.889-07:00", + "name": "ubuntu-1404-trusty-v20171010", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4582474752", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "9088066958550532862", + "creationTimestamp": "2017-10-27T07:00:49.967-07:00", + "name": "ubuntu-1404-trusty-v20171026", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-10-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4587408384", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20171026", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "3055250916953120114", + "creationTimestamp": "2017-11-06T14:35:09.341-08:00", + "name": "ubuntu-1404-trusty-v20171101", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-11-01", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4967958528", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20171101", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "1921455842312460750", + "creationTimestamp": "2017-11-17T19:21:05.363-08:00", + "name": "ubuntu-1404-trusty-v20171115a", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4961315840", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20171115a", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "8151268534648237611", + "creationTimestamp": "2017-12-08T18:56:05.094-08:00", + "name": "ubuntu-1404-trusty-v20171208", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2017-12-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4990256128", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20171208", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "2502141425101598015", + "creationTimestamp": "2018-01-10T00:50:24.615-08:00", + "name": "ubuntu-1404-trusty-v20180110", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2018-01-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5758928640", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180110", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "4318665042276564477", + "creationTimestamp": "2018-01-23T01:40:34.814-08:00", + "name": "ubuntu-1404-trusty-v20180122", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2018-01-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5776266240", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180122", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "2434440267918029820", + "creationTimestamp": "2018-02-14T11:25:08.157-08:00", + "name": "ubuntu-1404-trusty-v20180212", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2018-02-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5928096000", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "4140096842016896944", + "creationTimestamp": "2018-02-22T19:24:15.611-08:00", + "name": "ubuntu-1404-trusty-v20180222a", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2018-02-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5938590720", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180222a", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "3462937471901079650", + "creationTimestamp": "2018-03-07T09:51:09.268-08:00", + "name": "ubuntu-1404-trusty-v20180305", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2018-03-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5938176000", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180305", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "9017273704044797360", + "creationTimestamp": "2018-03-08T22:02:07.873-08:00", + "name": "ubuntu-1404-trusty-v20180308", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2018-03-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5938536960", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180308", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "2862348667076477675", + "creationTimestamp": "2018-04-04T23:02:44.560-07:00", + "name": "ubuntu-1404-trusty-v20180404", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2018-04-04", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5949438720", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180404", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "2907895996387390993", + "creationTimestamp": "2018-04-23T23:04:47.050-07:00", + "name": "ubuntu-1404-trusty-v20180423", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2018-04-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5952307200", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180423", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "6812910842076380561", + "creationTimestamp": "2018-05-09T07:19:42.696-07:00", + "name": "ubuntu-1404-trusty-v20180509", + "description": "Canonical, Ubuntu, 14.04 LTS, amd64 trusty image built on 2018-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "5952299520", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "family": "ubuntu-1404-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20180509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000010" + ] + }, + { + "kind": "compute#image", + "id": "13898107879086076373", + "creationTimestamp": "2014-10-29T09:51:39.609-07:00", + "name": "ubuntu-1410-utopic-v20141029", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20150616a" + }, + "status": "READY", + "archiveSizeBytes": "348037877", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1410-utopic" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20141029", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2412636152371793564", + "creationTimestamp": "2014-11-07T00:47:53.082-08:00", + "name": "ubuntu-1410-utopic-v20141030a", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20150616a" + }, + "status": "READY", + "archiveSizeBytes": "1044175299", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1410-utopic" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20141030a", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6363233028234584116", + "creationTimestamp": "2014-12-17T11:31:26.695-08:00", + "name": "ubuntu-1410-utopic-v20141217", + "description": "Canonical, Ubuntu, 14.10, amd64 utopic image built on 2014-12-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20150616a" + }, + "status": "READY", + "archiveSizeBytes": "1048366941", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1410-utopic" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20141217", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5128631072660596317", + "creationTimestamp": "2015-01-30T08:49:40.994-08:00", + "name": "ubuntu-1410-utopic-v20150128", + "description": "Canonical, Ubuntu, 14.10, amd64 utopic image built on 2015-01-28", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20150616a" + }, + "status": "READY", + "archiveSizeBytes": "862745640", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1410-utopic" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20150128", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "16618273330159868664", + "creationTimestamp": "2015-02-03T07:47:16.915-08:00", + "name": "ubuntu-1410-utopic-v20150202", + "description": "Canonical, Ubuntu, 14.10, amd64 utopic image built on 2015-02-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20150616a" + }, + "status": "READY", + "archiveSizeBytes": "746885775", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1410-utopic" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20150202", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4241463920074128523", + "creationTimestamp": "2015-03-19T05:34:44.137-07:00", + "name": "ubuntu-1410-utopic-v20150318c", + "description": "Canonical, Ubuntu, 14.10, amd64 utopic image built on 2015-03-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20150616a" + }, + "status": "READY", + "archiveSizeBytes": "746798568", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1410-utopic" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20150318c", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2309603337032573482", + "creationTimestamp": "2015-05-10T11:00:37.650-07:00", + "name": "ubuntu-1410-utopic-v20150509", + "description": "Canonical, Ubuntu, 14.10, amd64 utopic image built on 2015-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20150616a" + }, + "status": "READY", + "archiveSizeBytes": "747901614", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1410-utopic" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20150509", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5699914649192663011", + "creationTimestamp": "2015-06-17T02:08:28.335-07:00", + "name": "ubuntu-1410-utopic-v20150616a", + "description": "Canonical, Ubuntu, 14.10, amd64 utopic image built on 2015-06-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1404-trusty-v20150625" + }, + "status": "READY", + "archiveSizeBytes": "753114330", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1410-utopic" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20150616a", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7075003915689987469", + "creationTimestamp": "2015-07-09T10:46:10.424-07:00", + "name": "ubuntu-1410-utopic-v20150625", + "description": "Canonical, Ubuntu, 14.10, amd64 utopic image built on 2015-06-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1504-vivid-v20150911" + }, + "status": "READY", + "archiveSizeBytes": "752874399", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1410-utopic" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1410-utopic-v20150625", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2597899267265051103", + "creationTimestamp": "2015-04-23T07:52:32.443-07:00", + "name": "ubuntu-1504-vivid-v20150422", + "description": "Canonical, Ubuntu, 15.04, amd64 vivid image built on 2015-04-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1504-vivid-v20160114a" + }, + "status": "READY", + "archiveSizeBytes": "797469321", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1504-vivid" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1504-vivid-v20150422", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6610082300127119636", + "creationTimestamp": "2015-06-17T02:03:55.825-07:00", + "name": "ubuntu-1504-vivid-v20150616a", + "description": "Canonical, Ubuntu, 15.04, amd64 vivid image built on 2015-06-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1504-vivid-v20160114a" + }, + "status": "READY", + "archiveSizeBytes": "806558757", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1504-vivid" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1504-vivid-v20150616a", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7642239348826082885", + "creationTimestamp": "2015-09-02T10:23:54.688-07:00", + "name": "ubuntu-1504-vivid-v20150902", + "description": "Canonical, Ubuntu, 15.04, amd64 vivid image built on 2015-09-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1504-vivid-v20160114a" + }, + "status": "READY", + "archiveSizeBytes": "807796716", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1504-vivid" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1504-vivid-v20150902", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4746700353529909473", + "creationTimestamp": "2015-09-11T03:33:50.470-07:00", + "name": "ubuntu-1504-vivid-v20150911", + "description": "Canonical, Ubuntu, 15.04, amd64 vivid image built on 2015-09-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1504-vivid-v20160114a" + }, + "status": "READY", + "archiveSizeBytes": "807927510", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1504-vivid" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1504-vivid-v20150911", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6755373600535931695", + "creationTimestamp": "2015-11-23T10:06:56.691-08:00", + "name": "ubuntu-1504-vivid-v20151120", + "description": "Canonical, Ubuntu, 15.04, amd64 vivid image built on 2015-11-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1504-vivid-v20160114a" + }, + "status": "READY", + "archiveSizeBytes": "1090347824", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1504-vivid" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1504-vivid-v20151120", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8641467445853592019", + "creationTimestamp": "2016-01-15T09:07:08.940-08:00", + "name": "ubuntu-1504-vivid-v20160114a", + "description": "Canonical, Ubuntu, 15.04, amd64 vivid image built on 2016-01-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160226" + }, + "status": "READY", + "archiveSizeBytes": "1092109144", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1504-vivid" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1504-vivid-v20160114a", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3467471187914038434", + "creationTimestamp": "2015-10-22T10:52:13.477-07:00", + "name": "ubuntu-1510-wily-v20151021", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2015-10-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1165499360", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-devel" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20151021", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "918378213355512565", + "creationTimestamp": "2015-10-26T19:06:18.621-07:00", + "name": "ubuntu-1510-wily-v20151026", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2015-10-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1165323196", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-devel" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20151026", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5009293520094605161", + "creationTimestamp": "2015-11-16T09:25:26.115-08:00", + "name": "ubuntu-1510-wily-v20151114", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2015-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1177601884", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20151114", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4392756578264323684", + "creationTimestamp": "2016-01-15T09:12:43.053-08:00", + "name": "ubuntu-1510-wily-v20160114", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-01-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1225153432", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160114", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "691866654678293791", + "creationTimestamp": "2016-01-23T17:08:00.203-08:00", + "name": "ubuntu-1510-wily-v20160123", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-01-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1224524636", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160123", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1626152475426410668", + "creationTimestamp": "2016-02-17T04:57:39.234-08:00", + "name": "ubuntu-1510-wily-v20160217", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-02-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1226255264", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160217", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "870671065249349867", + "creationTimestamp": "2016-02-22T18:03:48.376-08:00", + "name": "ubuntu-1510-wily-v20160222", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-02-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1226510176", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160222", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6280865712449566797", + "creationTimestamp": "2016-02-26T18:14:58.618-08:00", + "name": "ubuntu-1510-wily-v20160226", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-02-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1226522552", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160226", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8274069835914157925", + "creationTimestamp": "2016-03-07T07:43:06.560-08:00", + "name": "ubuntu-1510-wily-v20160305", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-03-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1226448800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160305", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7892608643320736777", + "creationTimestamp": "2016-03-11T06:15:02.951-08:00", + "name": "ubuntu-1510-wily-v20160310", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-03-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1226373028", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "family": "ubuntu-1510", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160310", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4148038605983814717", + "creationTimestamp": "2016-03-15T08:31:30.159-07:00", + "name": "ubuntu-1510-wily-v20160315", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-03-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1225884576", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "family": "ubuntu-1510", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160315", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6834616198107635229", + "creationTimestamp": "2016-03-30T02:48:34.251-07:00", + "name": "ubuntu-1510-wily-v20160329", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-03-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1226477868", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "family": "ubuntu-1510", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160329", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "981242404145801609", + "creationTimestamp": "2016-04-05T21:58:14.805-07:00", + "name": "ubuntu-1510-wily-v20160405", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-04-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1226490112", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "family": "ubuntu-1510", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160405", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "295808835369316508", + "creationTimestamp": "2016-05-10T00:32:03.331-07:00", + "name": "ubuntu-1510-wily-v20160509", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1227032832", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "family": "ubuntu-1510", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160509", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5774648626304734205", + "creationTimestamp": "2016-05-17T03:06:10.133-07:00", + "name": "ubuntu-1510-wily-v20160516", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-05-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1227035928", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "family": "ubuntu-1510", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160516", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8484423113461157681", + "creationTimestamp": "2016-06-10T09:59:10.043-07:00", + "name": "ubuntu-1510-wily-v20160610", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-06-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1241931064", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "family": "ubuntu-1510", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160610", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5425225360010638037", + "creationTimestamp": "2016-06-28T03:06:50.357-07:00", + "name": "ubuntu-1510-wily-v20160627", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-06-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1242044712", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "family": "ubuntu-1510", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160627", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2978526351396711727", + "creationTimestamp": "2016-07-15T18:54:08.763-07:00", + "name": "ubuntu-1510-wily-v20160715", + "description": "Canonical, Ubuntu, 15.10, amd64 wily image built on 2016-07-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715" + }, + "status": "READY", + "archiveSizeBytes": "1241785632", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1510-wily" + ], + "family": "ubuntu-1510", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1510-wily-v20160715", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1470924355846619244", + "creationTimestamp": "2016-04-21T09:23:31.918-07:00", + "name": "ubuntu-1604-xenial-v20160420c", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-04-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1189903656", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20160420c", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3216778959090803851", + "creationTimestamp": "2016-04-29T05:58:12.154-07:00", + "name": "ubuntu-1604-xenial-v20160429", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-04-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1189123328", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20160429", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6621071021172018344", + "creationTimestamp": "2016-05-17T03:28:23.280-07:00", + "name": "ubuntu-1604-xenial-v20160516a", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-05-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1190065432", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20160516a", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5997109498244194065", + "creationTimestamp": "2016-06-10T08:51:26.832-07:00", + "name": "ubuntu-1604-xenial-v20160610", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-06-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1206989088", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20160610", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4867376955858614157", + "creationTimestamp": "2016-06-28T02:54:42.276-07:00", + "name": "ubuntu-1604-xenial-v20160627", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-06-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1211803968", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20160627", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2467144094615320034", + "creationTimestamp": "2016-07-22T05:01:17.191-07:00", + "name": "ubuntu-1604-xenial-v20160721", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-07-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1529953678", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20160721", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1049851341299280193", + "creationTimestamp": "2016-08-15T07:54:38.253-07:00", + "name": "ubuntu-1604-xenial-v20160815", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-08-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1528172133", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20160815", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "468596885801828365", + "creationTimestamp": "2016-08-25T11:54:26.021-07:00", + "name": "ubuntu-1604-xenial-v20160825", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-08-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1530285408", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20160825", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6456543764795861429", + "creationTimestamp": "2016-08-30T16:31:38.653-07:00", + "name": "ubuntu-1604-xenial-v20160830", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-08-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1541924453", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20160830", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2932474445039421428", + "creationTimestamp": "2016-09-08T16:49:47.117-07:00", + "name": "ubuntu-1604-xenial-v20160907a", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-09-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1544096698", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20160907a", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "815748599735650948", + "creationTimestamp": "2016-09-26T16:51:07.839-07:00", + "name": "ubuntu-1604-xenial-v20160921", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-09-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1851776232", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20160921", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "720961819724276974", + "creationTimestamp": "2016-09-23T09:36:17.445-07:00", + "name": "ubuntu-1604-xenial-v20160922", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-09-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1543175013", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20160922", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5855455485330931286", + "creationTimestamp": "2016-09-30T08:11:53.844-07:00", + "name": "ubuntu-1604-xenial-v20160930", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-09-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1858430256", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20160930", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8479907792857180986", + "creationTimestamp": "2016-10-10T15:27:33.418-07:00", + "name": "ubuntu-1604-xenial-v20161010", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2126511744", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20161010", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4044151580563393673", + "creationTimestamp": "2016-10-11T16:14:46.887-07:00", + "name": "ubuntu-1604-xenial-v20161011", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-10-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1858617672", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20161011", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6656541120206320366", + "creationTimestamp": "2016-10-13T15:34:41.514-07:00", + "name": "ubuntu-1604-xenial-v20161013", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-10-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1858760472", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20161013", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6105499461828774224", + "creationTimestamp": "2016-10-20T14:31:43.222-07:00", + "name": "ubuntu-1604-xenial-v20161020", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-10-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1858245930", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20161020", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4770036315222057675", + "creationTimestamp": "2016-11-15T15:37:08.343-08:00", + "name": "ubuntu-1604-xenial-v20161115", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1860408642", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20161115", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3055662593895211743", + "creationTimestamp": "2016-11-30T10:36:32.957-08:00", + "name": "ubuntu-1604-xenial-v20161130", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-11-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1865317656", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20161130", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6748359223122017486", + "creationTimestamp": "2016-12-06T01:17:21.910-08:00", + "name": "ubuntu-1604-xenial-v20161205", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-12-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1865337666", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20161205", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5914086938549144556", + "creationTimestamp": "2016-12-15T02:48:35.595-08:00", + "name": "ubuntu-1604-xenial-v20161214", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-12-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1878313818", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20161214", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "6346213785861559840", + "creationTimestamp": "2016-12-21T08:07:43.302-08:00", + "name": "ubuntu-1604-xenial-v20161221", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2016-12-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1890807600", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20161221", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "7119552931318276205", + "creationTimestamp": "2017-01-16T02:20:50.158-08:00", + "name": "ubuntu-1604-xenial-v20170111", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-01-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1911747960", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170111", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "95357544772724262", + "creationTimestamp": "2017-01-13T14:46:33.777-08:00", + "name": "ubuntu-1604-xenial-v20170113", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-01-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1907686680", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170113", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "7595433374968612192", + "creationTimestamp": "2017-01-27T04:22:39.370-08:00", + "name": "ubuntu-1604-xenial-v20170125", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-01-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1925195640", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170125", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "4117602612264162156", + "creationTimestamp": "2017-02-03T03:46:11.331-08:00", + "name": "ubuntu-1604-xenial-v20170202", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-02-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1924725606", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170202", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "7240127772998681796", + "creationTimestamp": "2017-02-20T15:22:19.717-08:00", + "name": "ubuntu-1604-xenial-v20170220", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-02-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1952318376", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170220", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "5716628424143988082", + "creationTimestamp": "2017-02-22T01:36:29.942-08:00", + "name": "ubuntu-1604-xenial-v20170221", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-02-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1954628496", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170221", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "5099694236507111451", + "creationTimestamp": "2017-02-24T15:17:09.013-08:00", + "name": "ubuntu-1604-xenial-v20170224", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-02-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1952825304", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170224", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "3620000268421548641", + "creationTimestamp": "2017-03-02T11:37:50.529-08:00", + "name": "ubuntu-1604-xenial-v20170302", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-03-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1953011160", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170302", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "5593634141474420789", + "creationTimestamp": "2017-03-03T11:41:14.611-08:00", + "name": "ubuntu-1604-xenial-v20170303", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-03-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1954917324", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170303", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "7606998557965263804", + "creationTimestamp": "2017-03-08T07:03:47.742-08:00", + "name": "ubuntu-1604-xenial-v20170307", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-03-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1955344338", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170307", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "3535496134044076767", + "creationTimestamp": "2017-03-29T01:45:36.161-07:00", + "name": "ubuntu-1604-xenial-v20170323", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-03-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1971251250", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170323", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "3452782331007624789", + "creationTimestamp": "2017-03-27T20:30:02.753-07:00", + "name": "ubuntu-1604-xenial-v20170327", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-03-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1972656690", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170327", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "2611663104059533366", + "creationTimestamp": "2017-03-29T08:46:33.980-07:00", + "name": "ubuntu-1604-xenial-v20170328", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-03-28", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1970907234", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170328", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "6314006526179709993", + "creationTimestamp": "2017-03-30T08:56:54.494-07:00", + "name": "ubuntu-1604-xenial-v20170330", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-03-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "1970859594", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170330", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "2817075146280905014", + "creationTimestamp": "2017-05-03T10:48:09.592-07:00", + "name": "ubuntu-1604-xenial-v20170502", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-05-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2641773232", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170502", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "5602448037163158994", + "creationTimestamp": "2017-05-17T08:58:53.519-07:00", + "name": "ubuntu-1604-xenial-v20170516", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-05-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "2644449928", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170516", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "3244574028898031089", + "creationTimestamp": "2017-06-14T09:58:06.109-07:00", + "name": "ubuntu-1604-xenial-v20170610", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-06-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "3055443795", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170610", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "7223507091408113841", + "creationTimestamp": "2017-06-20T02:43:58.624-07:00", + "name": "ubuntu-1604-xenial-v20170619a", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-06-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "3055577463", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170619a", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "2326741381757780111", + "creationTimestamp": "2017-07-21T15:21:20.478-07:00", + "name": "ubuntu-1604-xenial-v20170721", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-07-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "3393058478", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170721", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "869090508673716791", + "creationTimestamp": "2017-08-04T10:20:24.706-07:00", + "name": "ubuntu-1604-xenial-v20170803", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-08-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "3735090177", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170803", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "143535988233443117", + "creationTimestamp": "2017-08-11T15:03:46.667-07:00", + "name": "ubuntu-1604-xenial-v20170811", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-08-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "3754979695", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170811", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "1624293858373798915", + "creationTimestamp": "2017-08-17T08:14:52.871-07:00", + "name": "ubuntu-1604-xenial-v20170815a", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-08-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "3763906547", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170815a", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "5808419962706902464", + "creationTimestamp": "2017-09-20T17:09:19.441-07:00", + "name": "ubuntu-1604-xenial-v20170919", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-09-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4165020672", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20170919", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "1341312911514999017", + "creationTimestamp": "2017-10-02T13:48:06.606-07:00", + "name": "ubuntu-1604-xenial-v20171002", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-10-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4166584320", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20171002", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "1176237209289578872", + "creationTimestamp": "2017-10-13T09:19:35.790-07:00", + "name": "ubuntu-1604-xenial-v20171011", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-10-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4163607552", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20171011", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "6140086446928574013", + "creationTimestamp": "2017-10-27T12:28:18.577-07:00", + "name": "ubuntu-1604-xenial-v20171026a", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-10-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4164645888", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20171026a", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "5408163125598707347", + "creationTimestamp": "2017-11-06T14:21:48.533-08:00", + "name": "ubuntu-1604-xenial-v20171028", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-10-28", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4528163328", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20171028", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "739649999741039103", + "creationTimestamp": "2017-11-08T06:05:05.135-08:00", + "name": "ubuntu-1604-xenial-v20171107b", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-11-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4510395136", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20171107b", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "6389610161151077065", + "creationTimestamp": "2017-11-17T13:27:02.401-08:00", + "name": "ubuntu-1604-xenial-v20171116", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-11-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4554927104", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20171116", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "2167963278359740162", + "creationTimestamp": "2017-11-21T11:43:41.568-08:00", + "name": "ubuntu-1604-xenial-v20171121a", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-11-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4542333952", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20171121a", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "6214359007092979818", + "creationTimestamp": "2017-12-08T13:39:18.323-08:00", + "name": "ubuntu-1604-xenial-v20171208", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-12-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4544743424", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20171208", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "3401149333655791241", + "creationTimestamp": "2017-12-13T13:15:18.628-08:00", + "name": "ubuntu-1604-xenial-v20171212", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4565656576", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "4255139615523845478", + "creationTimestamp": "2018-01-05T15:34:33.551-08:00", + "name": "ubuntu-1604-xenial-v20180105", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2018-01-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4573447424", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180105", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "2948681057378550227", + "creationTimestamp": "2018-01-09T18:49:33.392-08:00", + "name": "ubuntu-1604-xenial-v20180109", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5275153920", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "8860232665877745348", + "creationTimestamp": "2018-01-12T14:01:16.654-08:00", + "name": "ubuntu-1604-xenial-v20180112", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2018-01-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5293536000", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180112", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "1525204848235725278", + "creationTimestamp": "2018-01-23T01:24:01.877-08:00", + "name": "ubuntu-1604-xenial-v20180122", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2018-01-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5293728000", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180122", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "2108074069701563737", + "creationTimestamp": "2018-01-26T14:29:10.643-08:00", + "name": "ubuntu-1604-xenial-v20180126", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2018-01-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5294707200", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180126", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "2114589182892000377", + "creationTimestamp": "2018-02-14T19:12:22.645-08:00", + "name": "ubuntu-1604-xenial-v20180214", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2018-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5379770880", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "2279006878944127217", + "creationTimestamp": "2018-02-22T15:45:34.971-08:00", + "name": "ubuntu-1604-xenial-v20180222", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2018-02-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5369775360", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180222", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "2837291016119325654", + "creationTimestamp": "2018-03-06T07:01:13.895-08:00", + "name": "ubuntu-1604-xenial-v20180306", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2018-03-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5364076800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180306", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "5410405300380623815", + "creationTimestamp": "2018-03-30T08:52:09.807-07:00", + "name": "ubuntu-1604-xenial-v20180323", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2018-03-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5374947840", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180323", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "4436534720287419217", + "creationTimestamp": "2018-04-05T14:31:43.757-07:00", + "name": "ubuntu-1604-xenial-v20180405", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2018-04-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5384862720", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180405", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "3821147081653549900", + "creationTimestamp": "2018-04-18T06:18:27.662-07:00", + "name": "ubuntu-1604-xenial-v20180418", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2018-04-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5381314560", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180418", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "1040395128905333674", + "creationTimestamp": "2018-04-24T07:55:02.146-07:00", + "name": "ubuntu-1604-xenial-v20180424", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2018-04-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5392124160", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180424", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "2611511852456143371", + "creationTimestamp": "2018-05-09T13:07:00.642-07:00", + "name": "ubuntu-1604-xenial-v20180509", + "description": "Canonical, Ubuntu, 16.04 LTS, amd64 xenial image built on 2018-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "4950199680", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1604-xenial" + ], + "family": "ubuntu-1604-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1604-xenial-v20180509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000201" + ] + }, + { + "kind": "compute#image", + "id": "5554742190461315308", + "creationTimestamp": "2016-10-13T11:44:19.369-07:00", + "name": "ubuntu-1610-yakkety-v20161012c", + "description": "Canonical, Ubuntu, 16.10, amd64 yakkety image built on 2016-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170719" + }, + "status": "READY", + "archiveSizeBytes": "1969573866", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1610-yakkety" + ], + "family": "ubuntu-1610", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20161012c", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6251000614376212720", + "creationTimestamp": "2016-10-20T14:24:47.152-07:00", + "name": "ubuntu-1610-yakkety-v20161020", + "description": "Canonical, Ubuntu, 16.10, amd64 yakkety image built on 2016-10-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170719" + }, + "status": "READY", + "archiveSizeBytes": "1965686238", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1610-yakkety" + ], + "family": "ubuntu-1610", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20161020", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7893788114330975567", + "creationTimestamp": "2016-12-07T09:15:12.944-08:00", + "name": "ubuntu-1610-yakkety-v20161205", + "description": "Canonical, Ubuntu, 16.10, amd64 yakkety image built on 2016-12-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170719" + }, + "status": "READY", + "archiveSizeBytes": "1987843110", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1610-yakkety" + ], + "family": "ubuntu-1610", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20161205", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2116925194173122890", + "creationTimestamp": "2017-01-05T04:10:13.405-08:00", + "name": "ubuntu-1610-yakkety-v20170103", + "description": "Canonical, Ubuntu, 16.10, amd64 yakkety image built on 2017-01-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170719" + }, + "status": "READY", + "archiveSizeBytes": "2019212838", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1610-yakkety" + ], + "family": "ubuntu-1610", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170103", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000221" + ] + }, + { + "kind": "compute#image", + "id": "4733761940554279505", + "creationTimestamp": "2017-02-22T10:13:18.840-08:00", + "name": "ubuntu-1610-yakkety-v20170222", + "description": "Canonical, Ubuntu, 16.10, amd64 yakkety image built on 2017-02-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170719" + }, + "status": "READY", + "archiveSizeBytes": "2038217790", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1610-yakkety" + ], + "family": "ubuntu-1610", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170222", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000221" + ] + }, + { + "kind": "compute#image", + "id": "5254546933022568605", + "creationTimestamp": "2017-03-08T06:00:18.717-08:00", + "name": "ubuntu-1610-yakkety-v20170307", + "description": "Canonical, Ubuntu, 16.10, amd64 yakkety image built on 2017-03-07", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170719" + }, + "status": "READY", + "archiveSizeBytes": "2039812158", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1610-yakkety" + ], + "family": "ubuntu-1610", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170307", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000221" + ] + }, + { + "kind": "compute#image", + "id": "8134701849387650555", + "creationTimestamp": "2017-03-29T01:40:52.050-07:00", + "name": "ubuntu-1610-yakkety-v20170322", + "description": "Canonical, Ubuntu, 16.10, amd64 yakkety image built on 2017-03-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170719" + }, + "status": "READY", + "archiveSizeBytes": "2042300508", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1610-yakkety" + ], + "family": "ubuntu-1610", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170322", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000221" + ] + }, + { + "kind": "compute#image", + "id": "1630611965706747830", + "creationTimestamp": "2017-03-31T00:12:25.661-07:00", + "name": "ubuntu-1610-yakkety-v20170330", + "description": "Canonical, Ubuntu, 16.10, amd64 yakkety image built on 2017-03-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170719" + }, + "status": "READY", + "archiveSizeBytes": "2040690774", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1610-yakkety" + ], + "family": "ubuntu-1610", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170330", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000221" + ] + }, + { + "kind": "compute#image", + "id": "1371062827127122225", + "creationTimestamp": "2017-05-03T10:48:14.581-07:00", + "name": "ubuntu-1610-yakkety-v20170502", + "description": "Canonical, Ubuntu, 16.10, amd64 yakkety image built on 2017-05-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170719" + }, + "status": "READY", + "archiveSizeBytes": "2731094688", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1610-yakkety" + ], + "family": "ubuntu-1610", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170502", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000221" + ] + }, + { + "kind": "compute#image", + "id": "3999967302050917371", + "creationTimestamp": "2017-06-14T12:57:08.973-07:00", + "name": "ubuntu-1610-yakkety-v20170613", + "description": "Canonical, Ubuntu, 16.10, amd64 yakkety image built on 2017-06-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170719" + }, + "status": "READY", + "archiveSizeBytes": "3156135552", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1610-yakkety" + ], + "family": "ubuntu-1610", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170613", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000221" + ] + }, + { + "kind": "compute#image", + "id": "3624657391685276907", + "creationTimestamp": "2017-06-19T21:52:20.992-07:00", + "name": "ubuntu-1610-yakkety-v20170619a", + "description": "Canonical, Ubuntu, 16.10, amd64 yakkety image built on 2017-06-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170719" + }, + "status": "READY", + "archiveSizeBytes": "3156847551", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1610-yakkety" + ], + "family": "ubuntu-1610", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170619a", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000221" + ] + }, + { + "kind": "compute#image", + "id": "5209334778689300563", + "creationTimestamp": "2017-07-20T04:40:44.099-07:00", + "name": "ubuntu-1610-yakkety-v20170719", + "description": "Canonical, Ubuntu, 16.10, amd64 yakkety image built on 2017-07-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20170720" + }, + "status": "READY", + "archiveSizeBytes": "3509067548", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1610-yakkety" + ], + "family": "ubuntu-1610", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1610-yakkety-v20170719", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000221" + ] + }, + { + "kind": "compute#image", + "id": "1378283852539239647", + "creationTimestamp": "2017-04-13T09:07:12.623-07:00", + "name": "ubuntu-1704-zesty-v20170413", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-04-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208" + }, + "status": "READY", + "archiveSizeBytes": "2388492636", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20170413", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "4571185037452462706", + "creationTimestamp": "2017-06-15T13:57:01.062-07:00", + "name": "ubuntu-1704-zesty-v20170615", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208" + }, + "status": "READY", + "archiveSizeBytes": "3168519417", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "4219776267901536947", + "creationTimestamp": "2017-06-19T22:36:28.283-07:00", + "name": "ubuntu-1704-zesty-v20170619a", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-06-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208" + }, + "status": "READY", + "archiveSizeBytes": "3170558529", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20170619a", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "5907341009525442446", + "creationTimestamp": "2017-07-20T16:14:41.885-07:00", + "name": "ubuntu-1704-zesty-v20170720", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-07-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208" + }, + "status": "READY", + "archiveSizeBytes": "3522356358", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20170720", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "1012185233994928658", + "creationTimestamp": "2017-08-04T05:47:57.664-07:00", + "name": "ubuntu-1704-zesty-v20170803", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-08-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208" + }, + "status": "READY", + "archiveSizeBytes": "3875726629", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20170803", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "8592599002998963525", + "creationTimestamp": "2017-08-10T22:42:02.743-07:00", + "name": "ubuntu-1704-zesty-v20170811", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-08-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208" + }, + "status": "READY", + "archiveSizeBytes": "3895199500", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20170811", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "6247196707883884786", + "creationTimestamp": "2017-09-22T07:28:45.469-07:00", + "name": "ubuntu-1704-zesty-v20170922", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-09-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208" + }, + "status": "READY", + "archiveSizeBytes": "4315954176", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20170922", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "7829643215861560651", + "creationTimestamp": "2017-10-03T15:13:56.792-07:00", + "name": "ubuntu-1704-zesty-v20171002", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-10-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208" + }, + "status": "READY", + "archiveSizeBytes": "4315127808", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171002", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "8560315688050233421", + "creationTimestamp": "2017-10-10T22:39:47.261-07:00", + "name": "ubuntu-1704-zesty-v20171011", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-10-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208" + }, + "status": "READY", + "archiveSizeBytes": "4314734592", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171011", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "2711727492655094187", + "creationTimestamp": "2017-10-27T14:38:13.147-07:00", + "name": "ubuntu-1704-zesty-v20171027a", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-10-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208" + }, + "status": "READY", + "archiveSizeBytes": "4316700672", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171027a", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "7689731842988438719", + "creationTimestamp": "2017-10-31T03:02:56.631-07:00", + "name": "ubuntu-1704-zesty-v20171031", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-10-31", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208" + }, + "status": "READY", + "archiveSizeBytes": "4316181504", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171031", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "8601674719825845860", + "creationTimestamp": "2017-11-06T14:22:04.103-08:00", + "name": "ubuntu-1704-zesty-v20171102", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-11-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208" + }, + "status": "READY", + "archiveSizeBytes": "4679071488", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171102", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "4308475043385631164", + "creationTimestamp": "2017-11-17T14:14:44.010-08:00", + "name": "ubuntu-1704-zesty-v20171116", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-11-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208" + }, + "status": "READY", + "archiveSizeBytes": "4695049216", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171116", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "206340770976660822", + "creationTimestamp": "2017-11-20T22:12:09.764-08:00", + "name": "ubuntu-1704-zesty-v20171121", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-11-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208" + }, + "status": "READY", + "archiveSizeBytes": "4692653056", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171121", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "8455067402743812482", + "creationTimestamp": "2017-12-07T22:21:33.888-08:00", + "name": "ubuntu-1704-zesty-v20171208", + "description": "Canonical, Ubuntu, 17.04, amd64 zesty image built on 2017-12-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "4694673152", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1704-zesty" + ], + "family": "ubuntu-1704", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1704-zesty-v20171208", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000227" + ] + }, + { + "kind": "compute#image", + "id": "3075344706742590216", + "creationTimestamp": "2017-10-19T06:17:27.682-07:00", + "name": "ubuntu-1710-artful-v20171017", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2017-10-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4440511488", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20171017", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "3904948653880335889", + "creationTimestamp": "2017-11-06T14:23:58.473-08:00", + "name": "ubuntu-1710-artful-v20171026a", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2017-10-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4815203328", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20171026a", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "7853765246797661443", + "creationTimestamp": "2017-11-08T13:49:32.307-08:00", + "name": "ubuntu-1710-artful-v20171108", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2017-11-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4806028032", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20171108", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "4017059966163753378", + "creationTimestamp": "2017-11-17T19:21:49.600-08:00", + "name": "ubuntu-1710-artful-v20171115a", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2017-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4807741952", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20171115a", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "5919712301991097230", + "creationTimestamp": "2017-11-28T12:56:01.887-08:00", + "name": "ubuntu-1710-artful-v20171122", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2017-11-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4808024832", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20171122", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "8934315689175850884", + "creationTimestamp": "2017-12-08T15:34:03.379-08:00", + "name": "ubuntu-1710-artful-v20171208", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2017-12-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4812354560", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20171208", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "6662728179475287700", + "creationTimestamp": "2017-12-13T14:58:03.763-08:00", + "name": "ubuntu-1710-artful-v20171213", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2017-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4812025088", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20171213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "1152182531938279542", + "creationTimestamp": "2017-12-20T14:05:13.732-08:00", + "name": "ubuntu-1710-artful-v20171220", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2017-12-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4823529984", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20171220", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "4166301579965165671", + "creationTimestamp": "2018-01-09T15:21:44.772-08:00", + "name": "ubuntu-1710-artful-v20180109", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "4823020800", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "4175757594709415684", + "creationTimestamp": "2018-01-22T23:53:15.549-08:00", + "name": "ubuntu-1710-artful-v20180122", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2018-01-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5583655680", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180122", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "4399991974602901008", + "creationTimestamp": "2018-01-26T06:19:43.937-08:00", + "name": "ubuntu-1710-artful-v20180126", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2018-01-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5586197760", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180126", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "1363158038544077723", + "creationTimestamp": "2018-02-22T08:19:00.585-08:00", + "name": "ubuntu-1710-artful-v20180222", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2018-02-22", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5586136320", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180222", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "2416007651263949337", + "creationTimestamp": "2018-03-03T13:34:46.898-08:00", + "name": "ubuntu-1710-artful-v20180303", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2018-03-03", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5239152960", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180303", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "5933538647814186557", + "creationTimestamp": "2018-03-14T14:49:07.158-07:00", + "name": "ubuntu-1710-artful-v20180314", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2018-03-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5251325760", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180314", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "8775542748374409753", + "creationTimestamp": "2018-03-20T07:38:47.381-07:00", + "name": "ubuntu-1710-artful-v20180315", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2018-03-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5250350400", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180315", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "7073780043170328755", + "creationTimestamp": "2018-04-06T08:12:29.847-07:00", + "name": "ubuntu-1710-artful-v20180405", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2018-04-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5256506880", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180405", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "7446039929752414886", + "creationTimestamp": "2018-05-02T08:07:54.743-07:00", + "name": "ubuntu-1710-artful-v20180425", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2018-04-25", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509" + }, + "status": "READY", + "archiveSizeBytes": "5269466880", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180425", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "7043235893617813148", + "creationTimestamp": "2018-05-09T13:22:12.168-07:00", + "name": "ubuntu-1710-artful-v20180509", + "description": "Canonical, Ubuntu, 17.10, amd64 artful image built on 2018-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "5272430400", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1710" + ], + "family": "ubuntu-1710", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1710-artful-v20180509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3533844014765677150" + ] + }, + { + "kind": "compute#image", + "id": "6358156582333702971", + "creationTimestamp": "2018-04-26T16:16:37.269-07:00", + "name": "ubuntu-1804-bionic-v20180426b", + "description": "Canonical, Ubuntu, 18.04 LTS, amd64 bionic image built on 2018-04-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "6797531520", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1804-lts" + ], + "family": "ubuntu-1804-lts", + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-1804-bionic-v20180426b", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "5926592092274602096" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:02 GMT + recorded_at: Fri, 11 May 2018 14:32:54 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-east4/targetPools + uri: https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:54 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:02 GMT + - Fri, 11 May 2018 14:32:54 GMT Date: - - Fri, 02 Jun 2017 19:26:02 GMT + - Fri, 11 May 2018 14:32:54 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/015JxvAtHcecs0a_t58r7lIx99g"' + - '"g73HnhscNmb38ZVAQ69fhPVKRiI=/2ocCvChQdM1C9WMcvKzKn2oRBtg="' Vary: - Origin - X-Origin @@ -7173,52 +38548,5270 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAJ2OQQ6CMBAA730FqVfLpoETb+DgFxDXulK7DbvQg/HvIjHx - 7n0yM09T2YnSxXaVHfmRF8WDDnNAPTHHnkTtcUNoB/LMdxxVYKSVotPljM77 - pvEtzBiIk8AiDgfRFn4S2Q2C8dpTmj6em2qWDqCUUgfmEHHIJPXWh+8DrB7+ - rZmXeQNmZIHW1gAAAA== + encoding: UTF-8 + string: | + { + "kind": "compute#imageList", + "id": "projects/windows-cloud/global/images", + "items": [ + { + "kind": "compute#image", + "id": "7068044754301027575", + "creationTimestamp": "2017-11-06T11:38:00.859-08:00", + "name": "windows-server-1709-dc-core-for-containers-v20171030", + "description": "Microsoft, Windows Server, version 1709 Core for Containers (Beta), Server Core, x64 built on 2017-10-30", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "77493158912", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-for-containers" + ], + "family": "windows-1709-core-for-containers", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20171030", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "5194306116883728686", + "1000226", + "2643967004807329741" + ] + }, + { + "kind": "compute#image", + "id": "1572352838839848774", + "creationTimestamp": "2017-11-16T12:14:33.128-08:00", + "name": "windows-server-1709-dc-core-for-containers-v20171114", + "description": "Microsoft, Windows Server, version 1709 Core for Containers (Beta), Server Core, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "79706428672", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-for-containers" + ], + "family": "windows-1709-core-for-containers", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "5194306116883728686", + "1000226", + "2643967004807329741" + ] + }, + { + "kind": "compute#image", + "id": "7740770940776049006", + "creationTimestamp": "2017-12-14T11:56:49.917-08:00", + "name": "windows-server-1709-dc-core-for-containers-v20171212", + "description": "Microsoft, Windows Server, version 1709 Core for Containers (Beta), Server Core, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "82579078400", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-for-containers" + ], + "family": "windows-1709-core-for-containers", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "5194306116883728686", + "1000226", + "2643967004807329741" + ] + }, + { + "kind": "compute#image", + "id": "6683184318438435710", + "creationTimestamp": "2018-01-10T10:04:01.230-08:00", + "name": "windows-server-1709-dc-core-for-containers-v20180109", + "description": "Microsoft, Windows Server, version 1709 Core for Containers (Beta), Server Core, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "100016094720", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-for-containers" + ], + "family": "windows-1709-core-for-containers", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "5194306116883728686", + "1000226", + "2643967004807329741" + ] + }, + { + "kind": "compute#image", + "id": "8693983883519829292", + "creationTimestamp": "2018-02-15T15:46:11.701-08:00", + "name": "windows-server-1709-dc-core-for-containers-v20180213", + "description": "Microsoft, Windows Server, version 1709 Datacenter Core for Containers (Beta), Server Core, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "105625824000", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-for-containers", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-1709-core-for-containers", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "2643967004807329741", + "5194306116883728686", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "6045121554567069818", + "creationTimestamp": "2018-03-15T11:42:30.283-07:00", + "name": "windows-server-1709-dc-core-for-containers-v20180313", + "description": "Microsoft, Windows Server, version 1709 Datacenter Core for Containers (Beta), Server Core, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "106275532800", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-for-containers", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-1709-core-for-containers", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "2643967004807329741", + "5194306116883728686", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "5771350821478475907", + "creationTimestamp": "2018-04-12T10:25:00.993-07:00", + "name": "windows-server-1709-dc-core-for-containers-v20180410", + "description": "Microsoft, Windows Server, version 1709 Datacenter Core for Containers (Beta), Server Core, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "107765690880", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-for-containers", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-1709-core-for-containers", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "2643967004807329741", + "5194306116883728686", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "2055782988894556629", + "creationTimestamp": "2018-05-10T09:11:38.848-07:00", + "name": "windows-server-1709-dc-core-for-containers-v20180508", + "description": "Microsoft, Windows Server, version 1709 Datacenter Core for Containers (Beta), Server Core, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "110218022400", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-for-containers", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-1709-core-for-containers", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-for-containers-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "2643967004807329741", + "5194306116883728686", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "4641244041463910427", + "creationTimestamp": "2017-10-30T11:27:00.186-07:00", + "name": "windows-server-1709-dc-core-v20171023", + "description": "Microsoft, Windows Server, version 1709 Core, Server Core, x64 built on 2017-10-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "38245699584", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-1709-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20171023", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "5194306116883728686", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "3954991903415494660", + "creationTimestamp": "2017-11-16T10:20:27.159-08:00", + "name": "windows-server-1709-dc-core-v20171114", + "description": "Microsoft, Windows Server, version 1709 Core, Server Core, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "42246450688", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-1709-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "5194306116883728686", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "3388424569623635931", + "creationTimestamp": "2017-12-14T12:04:04.288-08:00", + "name": "windows-server-1709-dc-core-v20171212", + "description": "Microsoft, Windows Server, version 1709 Core, Server Core, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "42343355392", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-1709-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "5194306116883728686", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "4918385327413652363", + "creationTimestamp": "2018-01-10T10:03:16.949-08:00", + "name": "windows-server-1709-dc-core-v20180109", + "description": "Microsoft, Windows Server, version 1709 Core, Server Core, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "52111914240", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-1709-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "5194306116883728686", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "3588538945751459809", + "creationTimestamp": "2018-02-15T15:34:38.669-08:00", + "name": "windows-server-1709-dc-core-v20180213", + "description": "Microsoft, Windows Server, version 1709 Datacenter Core, Server Core, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "56888133120", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-1709-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "5194306116883728686", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "6919511548105262648", + "creationTimestamp": "2018-03-15T11:17:59.770-07:00", + "name": "windows-server-1709-dc-core-v20180313", + "description": "Microsoft, Windows Server, version 1709 Datacenter Core, Server Core, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "57404048640", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-1709-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "5194306116883728686", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "4048767360358819383", + "creationTimestamp": "2018-04-12T10:35:21.383-07:00", + "name": "windows-server-1709-dc-core-v20180410", + "description": "Microsoft, Windows Server, version 1709 Datacenter Core, Server Core, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "58656453120", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-1709-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "5194306116883728686", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "9130048477111898955", + "creationTimestamp": "2018-05-10T09:04:53.576-07:00", + "name": "windows-server-1709-dc-core-v20180508", + "description": "Microsoft, Windows Server, version 1709 Datacenter Core, Server Core, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "60206691840", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-1709-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1709-dc-core-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "5194306116883728686", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "1613296465715232262", + "creationTimestamp": "2018-05-10T15:00:09.905-07:00", + "name": "windows-server-1803-dc-core-v20180508", + "description": "Microsoft, Windows Server, version 1803 Datacenter Core, Server Core, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "50972663040", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-1709-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-1803-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-1803-dc-core-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "5194306116883728686", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "5213189657927461279", + "creationTimestamp": "2015-04-13T12:22:24.709-07:00", + "name": "windows-server-2008-r2-dc-v20150331", + "description": "Windows Server 2008 R2 Datacenter Edition built on 2015-03-31", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20150511" + }, + "status": "READY", + "archiveSizeBytes": "7011478674", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20150331", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "378543743910997027", + "creationTimestamp": "2015-06-03T12:17:32.109-07:00", + "name": "windows-server-2008-r2-dc-v20150511", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter Edition, x64 Datacenter Edition built on 2015-05-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20150629" + }, + "status": "READY", + "archiveSizeBytes": "6615727494", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20150511", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3642916590501595598", + "creationTimestamp": "2015-07-01T11:53:21.303-07:00", + "name": "windows-server-2008-r2-dc-v20150629", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter Edition, x64 Datacenter Edition built on 2015-06-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20150721" + }, + "status": "READY", + "archiveSizeBytes": "7087712443", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20150629", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4334303099911352938", + "creationTimestamp": "2015-07-30T13:43:49.169-07:00", + "name": "windows-server-2008-r2-dc-v20150721", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter Edition, x64 Datacenter Edition built on 2015-07-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20150813" + }, + "status": "READY", + "archiveSizeBytes": "7076226561", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20150721", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6105903334864849746", + "creationTimestamp": "2015-08-18T15:46:21.819-07:00", + "name": "windows-server-2008-r2-dc-v20150813", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter Edition, x64 Datacenter Edition built on 2015-08-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20150909" + }, + "status": "READY", + "archiveSizeBytes": "6969910689", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20150813", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "861524159347722487", + "creationTimestamp": "2015-09-17T14:52:24.862-07:00", + "name": "windows-server-2008-r2-dc-v20150909", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter Edition, x64 Datacenter Edition built on 2015-09-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20151006" + }, + "status": "READY", + "archiveSizeBytes": "7144173220", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20150909", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6139272155511355039", + "creationTimestamp": "2015-10-14T14:26:08.743-07:00", + "name": "windows-server-2008-r2-dc-v20151006", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter Edition, x64 Datacenter Edition built on 2015-10-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160112" + }, + "status": "READY", + "archiveSizeBytes": "7234621445", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20151006", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4870936994092616270", + "creationTimestamp": "2016-01-19T14:11:45.479-08:00", + "name": "windows-server-2008-r2-dc-v20160112", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-01-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160224" + }, + "status": "READY", + "archiveSizeBytes": "7463137097", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160112", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2213036194235407374", + "creationTimestamp": "2016-03-01T19:49:53.420-08:00", + "name": "windows-server-2008-r2-dc-v20160224", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-02-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160323" + }, + "status": "READY", + "archiveSizeBytes": "7717297610", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160224", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2748241767023736431", + "creationTimestamp": "2016-03-29T11:25:04.336-07:00", + "name": "windows-server-2008-r2-dc-v20160323", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-03-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160413" + }, + "status": "READY", + "archiveSizeBytes": "7386341259", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160323", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4370214876226930579", + "creationTimestamp": "2016-04-14T13:11:40.743-07:00", + "name": "windows-server-2008-r2-dc-v20160413", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-04-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160502" + }, + "status": "READY", + "archiveSizeBytes": "7186252852", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160413", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6993134331397390539", + "creationTimestamp": "2016-05-04T15:56:36.994-07:00", + "name": "windows-server-2008-r2-dc-v20160502", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-05-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160623" + }, + "status": "READY", + "archiveSizeBytes": "7145769962", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160502", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2369612401015213286", + "creationTimestamp": "2016-06-28T14:54:17.078-07:00", + "name": "windows-server-2008-r2-dc-v20160623", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-06-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160719" + }, + "status": "READY", + "archiveSizeBytes": "7224893195", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160623", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2158303403065509176", + "creationTimestamp": "2016-07-21T14:17:11.585-07:00", + "name": "windows-server-2008-r2-dc-v20160719", + "description": "Microsoft, Windows Server, 2008 R2, x64 built on 2016-07-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160809" + }, + "status": "READY", + "archiveSizeBytes": "5968429368", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160719", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "2008288995800350476", + "creationTimestamp": "2016-08-11T11:20:19.903-07:00", + "name": "windows-server-2008-r2-dc-v20160809", + "description": "Microsoft, Windows Server, 2008 R2, x64 built on 2016-08-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160916" + }, + "status": "READY", + "archiveSizeBytes": "5966264126", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160809", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "6763603831621802866", + "creationTimestamp": "2016-09-22T16:13:33.025-07:00", + "name": "windows-server-2008-r2-dc-v20160916", + "description": "Microsoft, Windows Server, 2008 R2, x64 built on 2016-09-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20161012" + }, + "status": "READY", + "archiveSizeBytes": "5954058282", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20160916", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "2772354645403194803", + "creationTimestamp": "2016-10-17T08:16:44.784-07:00", + "name": "windows-server-2008-r2-dc-v20161012", + "description": "Microsoft, Windows Server, 2008 R2, x64 built on 2016-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20161115" + }, + "status": "READY", + "archiveSizeBytes": "4077223973", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20161012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "1687527403435586579", + "creationTimestamp": "2016-11-17T16:27:40.657-08:00", + "name": "windows-server-2008-r2-dc-v20161115", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2016-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20161213" + }, + "status": "READY", + "archiveSizeBytes": "42690158448", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20161115", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "2314036885661332711", + "creationTimestamp": "2016-12-15T13:24:24.892-08:00", + "name": "windows-server-2008-r2-dc-v20161213", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2016-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "39498677574", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20161213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "3799452128138915245", + "creationTimestamp": "2017-01-18T12:42:42.788-08:00", + "name": "windows-server-2008-r2-dc-v20170117", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "39783526908", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "8918337882578560150", + "creationTimestamp": "2017-02-21T11:52:25.831-08:00", + "name": "windows-server-2008-r2-dc-v20170214", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "39644410992", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "6768383180983663418", + "creationTimestamp": "2017-04-13T11:39:17.042-07:00", + "name": "windows-server-2008-r2-dc-v20170411", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "47621288504", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "2147673285944969818", + "creationTimestamp": "2017-04-17T14:33:41.094-07:00", + "name": "windows-server-2008-r2-dc-v20170417", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "48026317282", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "3432709681111985625", + "creationTimestamp": "2017-05-11T14:10:14.489-07:00", + "name": "windows-server-2008-r2-dc-v20170509", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "48380372092", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "4916375729444589520", + "creationTimestamp": "2017-06-19T13:17:03.973-07:00", + "name": "windows-server-2008-r2-dc-v20170615", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "63975628722", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "4515367432017833769", + "creationTimestamp": "2017-07-13T13:02:14.195-07:00", + "name": "windows-server-2008-r2-dc-v20170711", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "68968038966", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "2795521986768470313", + "creationTimestamp": "2017-08-10T13:19:18.466-07:00", + "name": "windows-server-2008-r2-dc-v20170808", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "72522929165", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "2731715050680982034", + "creationTimestamp": "2017-09-18T12:56:45.764-07:00", + "name": "windows-server-2008-r2-dc-v20170913", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "80174518272", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "3868808655909560321", + "creationTimestamp": "2017-10-12T09:57:18.961-07:00", + "name": "windows-server-2008-r2-dc-v20171010", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "84353132544", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "6845181714514556203", + "creationTimestamp": "2017-11-16T14:05:56.268-08:00", + "name": "windows-server-2008-r2-dc-v20171114", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "94312255232", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "3598164431325851046", + "creationTimestamp": "2017-12-14T11:38:49.505-08:00", + "name": "windows-server-2008-r2-dc-v20171212", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "93986853376", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "6595285867105608797", + "creationTimestamp": "2018-01-10T10:25:55.262-08:00", + "name": "windows-server-2008-r2-dc-v20180109", + "description": "Microsoft, Windows Server, 2008 R2, Server with Desktop Experience, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "110366384640", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "5816285739988263571", + "creationTimestamp": "2018-02-15T15:49:17.554-08:00", + "name": "windows-server-2008-r2-dc-v20180213", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter, Server with Desktop Experience, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "114680394240", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "3121203000220517945", + "creationTimestamp": "2018-03-15T11:17:59.882-07:00", + "name": "windows-server-2008-r2-dc-v20180313", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter, Server with Desktop Experience, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "104028940800", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "8180061063390307896", + "creationTimestamp": "2018-04-12T10:35:20.436-07:00", + "name": "windows-server-2008-r2-dc-v20180410", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter, Server with Desktop Experience, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "102260417280", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "7353097975634711371", + "creationTimestamp": "2018-05-10T09:04:53.054-07:00", + "name": "windows-server-2008-r2-dc-v20180508", + "description": "Microsoft, Windows Server, 2008 R2 Datacenter, Server with Desktop Experience, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "107106650880", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2008-r2-dc" + ], + "family": "windows-2008-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2008-r2-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000000" + ] + }, + { + "kind": "compute#image", + "id": "6515857804275899434", + "creationTimestamp": "2017-01-18T13:48:53.322-08:00", + "name": "windows-server-2012-r2-dc-core-v20170117", + "description": "Microsoft, Windows Server, 2012 R2 Core, Server Core, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "30471632184", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "311628149047766976", + "creationTimestamp": "2017-02-21T11:12:47.374-08:00", + "name": "windows-server-2012-r2-dc-core-v20170214", + "description": "Microsoft, Windows Server, 2012 R2 Core, Server Core, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "30477312534", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "8178426398868926574", + "creationTimestamp": "2017-04-13T12:16:17.561-07:00", + "name": "windows-server-2012-r2-dc-core-v20170411", + "description": "Microsoft, Windows Server, 2012 R2 Core, Server Core, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "34802062518", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "3192672110763347145", + "creationTimestamp": "2017-04-17T14:22:46.797-07:00", + "name": "windows-server-2012-r2-dc-core-v20170417", + "description": "Microsoft, Windows Server, 2012 R2 Core, Server Core, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "35872578454", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "2008171846250883773", + "creationTimestamp": "2017-05-11T14:14:58.983-07:00", + "name": "windows-server-2012-r2-dc-core-v20170509", + "description": "Microsoft, Windows Server, 2012 R2 Core, Server Core, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "40599335714", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "5018262627267481297", + "creationTimestamp": "2017-06-19T13:12:46.866-07:00", + "name": "windows-server-2012-r2-dc-core-v20170615", + "description": "Microsoft, Windows Server, 2012 R2 Core, Server Core, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "49011238203", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "480946407109981001", + "creationTimestamp": "2017-07-13T12:44:38.110-07:00", + "name": "windows-server-2012-r2-dc-core-v20170711", + "description": "Microsoft, Windows Server, 2012 R2 Core, Server Core, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "53946827938", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "952390407241693899", + "creationTimestamp": "2017-08-10T13:37:56.427-07:00", + "name": "windows-server-2012-r2-dc-core-v20170808", + "description": "Microsoft, Windows Server, 2012 R2 Core, Server Core, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "59495628695", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "7191968463645941652", + "creationTimestamp": "2017-09-18T12:41:47.051-07:00", + "name": "windows-server-2012-r2-dc-core-v20170913", + "description": "Microsoft, Windows Server, 2012 R2 Core, Server Core, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "63921921024", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "8472915259650350199", + "creationTimestamp": "2017-10-12T10:12:56.544-07:00", + "name": "windows-server-2012-r2-dc-core-v20171010", + "description": "Microsoft, Windows Server, 2012 R2 Core, Server Core, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "64867648512", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "5517040821429364403", + "creationTimestamp": "2017-11-16T10:26:36.993-08:00", + "name": "windows-server-2012-r2-dc-core-v20171114", + "description": "Microsoft, Windows Server, 2012 R2 Core, Server Core, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "71182645248", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "5257987751552181397", + "creationTimestamp": "2017-12-14T12:09:30.867-08:00", + "name": "windows-server-2012-r2-dc-core-v20171212", + "description": "Microsoft, Windows Server, 2012 R2 Core, Server Core, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "69747019264", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "7789297259408779320", + "creationTimestamp": "2018-01-10T10:09:27.944-08:00", + "name": "windows-server-2012-r2-dc-core-v20180109", + "description": "Microsoft, Windows Server, 2012 R2 Core, Server Core, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "79737077760", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "3702638385512032225", + "creationTimestamp": "2018-02-15T15:34:38.691-08:00", + "name": "windows-server-2012-r2-dc-core-v20180213", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Core, Server Core, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "84915636480", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "2114292404944569912", + "creationTimestamp": "2018-03-15T11:17:59.855-07:00", + "name": "windows-server-2012-r2-dc-core-v20180313", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Core, Server Core, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "88984381440", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "2370326920272422455", + "creationTimestamp": "2018-04-12T10:35:21.176-07:00", + "name": "windows-server-2012-r2-dc-core-v20180410", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Core, Server Core, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "85889280000", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "7337914055062573899", + "creationTimestamp": "2018-05-10T09:04:53.242-07:00", + "name": "windows-server-2012-r2-dc-core-v20180508", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Core, Server Core, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "84823038720", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2012-r2-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-core-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000017", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "8665154791844250903", + "creationTimestamp": "2015-03-19T14:13:28.584-07:00", + "name": "windows-server-2012-r2-dc-v20150310", + "description": "Windows Server 2012 R2 Datacenter Edition built on 2015-03-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20150629" + }, + "status": "READY", + "archiveSizeBytes": "6413906352", + "diskSizeGb": "30", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20150310", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8398209431795509122", + "creationTimestamp": "2015-04-13T12:30:53.164-07:00", + "name": "windows-server-2012-r2-dc-v20150331", + "description": "Windows Server 2012 R2 Datacenter Edition built on 2015-03-31", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20150511" + }, + "status": "READY", + "archiveSizeBytes": "6428001203", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20150331", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6675386719526906429", + "creationTimestamp": "2015-06-03T12:26:10.702-07:00", + "name": "windows-server-2012-r2-dc-v20150511", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2015-05-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20150629" + }, + "status": "READY", + "archiveSizeBytes": "6004581891", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20150511", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3412307594377266701", + "creationTimestamp": "2015-07-01T12:00:50.525-07:00", + "name": "windows-server-2012-r2-dc-v20150629", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2015-06-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20150721" + }, + "status": "READY", + "archiveSizeBytes": "5950506041", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20150629", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7946791811880005841", + "creationTimestamp": "2015-07-30T13:51:10.117-07:00", + "name": "windows-server-2012-r2-dc-v20150721", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2015-07-21", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20150813" + }, + "status": "READY", + "archiveSizeBytes": "6097962043", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20150721", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4077101418643589500", + "creationTimestamp": "2015-08-18T15:54:11.550-07:00", + "name": "windows-server-2012-r2-dc-v20150813", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2015-08-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20150909" + }, + "status": "READY", + "archiveSizeBytes": "6090804958", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20150813", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3647644262869666071", + "creationTimestamp": "2015-09-17T15:00:24.491-07:00", + "name": "windows-server-2012-r2-dc-v20150909", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2015-09-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20151006" + }, + "status": "READY", + "archiveSizeBytes": "6062385877", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20150909", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "725498078273173406", + "creationTimestamp": "2015-10-14T14:30:25.146-07:00", + "name": "windows-server-2012-r2-dc-v20151006", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2015-10-06", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160112" + }, + "status": "READY", + "archiveSizeBytes": "6080451388", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20151006", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3952690466724711558", + "creationTimestamp": "2016-01-19T14:02:17.749-08:00", + "name": "windows-server-2012-r2-dc-v20160112", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-01-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160224" + }, + "status": "READY", + "archiveSizeBytes": "6198442301", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160112", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6720719583885122244", + "creationTimestamp": "2016-03-01T19:55:23.237-08:00", + "name": "windows-server-2012-r2-dc-v20160224", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-02-24", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160323" + }, + "status": "READY", + "archiveSizeBytes": "6605003671", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160224", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9018637064175319486", + "creationTimestamp": "2016-03-29T11:20:01.496-07:00", + "name": "windows-server-2012-r2-dc-v20160323", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-03-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160413" + }, + "status": "READY", + "archiveSizeBytes": "6755772951", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160323", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1819648306979161768", + "creationTimestamp": "2016-04-14T13:06:31.454-07:00", + "name": "windows-server-2012-r2-dc-v20160413", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-04-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160502" + }, + "status": "READY", + "archiveSizeBytes": "6716619718", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160413", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "337675781432360534", + "creationTimestamp": "2016-05-04T16:07:37.254-07:00", + "name": "windows-server-2012-r2-dc-v20160502", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-05-02", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160623" + }, + "status": "READY", + "archiveSizeBytes": "6746051197", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160502", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4676520587888119237", + "creationTimestamp": "2016-06-28T14:59:07.027-07:00", + "name": "windows-server-2012-r2-dc-v20160623", + "description": "Microsoft, Windows Server, 2012 R2,Datacenter Edition, x64 Datacenter Edition built on 2016-06-23", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160719" + }, + "status": "READY", + "archiveSizeBytes": "6928849312", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160623", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5806554752929792526", + "creationTimestamp": "2016-07-21T14:21:37.418-07:00", + "name": "windows-server-2012-r2-dc-v20160719", + "description": "Microsoft, Windows Server, 2012 R2, x64 built on 2016-07-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160809" + }, + "status": "READY", + "archiveSizeBytes": "6962641541", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160719", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "2428177303738612737", + "creationTimestamp": "2016-08-11T11:24:46.849-07:00", + "name": "windows-server-2012-r2-dc-v20160809", + "description": "Microsoft, Windows Server, 2012 R2, x64 built on 2016-08-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160916" + }, + "status": "READY", + "archiveSizeBytes": "7084497216", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160809", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "1571704569439311932", + "creationTimestamp": "2016-09-22T16:18:43.175-07:00", + "name": "windows-server-2012-r2-dc-v20160916", + "description": "Microsoft, Windows Server, 2012 R2, x64 built on 2016-09-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20161012" + }, + "status": "READY", + "archiveSizeBytes": "7287222098", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20160916", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "985905686311949017", + "creationTimestamp": "2016-10-17T08:20:22.800-07:00", + "name": "windows-server-2012-r2-dc-v20161012", + "description": "Microsoft, Windows Server, 2012 R2, x64 built on 2016-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20161115" + }, + "status": "READY", + "archiveSizeBytes": "7626636928", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20161012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "5553396401066735951", + "creationTimestamp": "2016-11-17T16:13:20.938-08:00", + "name": "windows-server-2012-r2-dc-v20161115", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2016-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20161213" + }, + "status": "READY", + "archiveSizeBytes": "45349559298", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20161115", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "4833233855592707572", + "creationTimestamp": "2016-12-15T13:28:59.273-08:00", + "name": "windows-server-2012-r2-dc-v20161213", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2016-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "45516470652", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20161213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7113502546463977275", + "creationTimestamp": "2017-01-18T12:36:36.164-08:00", + "name": "windows-server-2012-r2-dc-v20170117", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "45490173084", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "3187855893345675237", + "creationTimestamp": "2017-02-21T11:46:18.519-08:00", + "name": "windows-server-2012-r2-dc-v20170214", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "45536606082", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7429226215153759188", + "creationTimestamp": "2017-04-13T12:10:51.937-07:00", + "name": "windows-server-2012-r2-dc-v20170411", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "54389351883", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7117756672907971418", + "creationTimestamp": "2017-04-17T14:37:57.842-07:00", + "name": "windows-server-2012-r2-dc-v20170417", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "54250792679", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "654741481352422940", + "creationTimestamp": "2017-05-11T14:34:43.286-07:00", + "name": "windows-server-2012-r2-dc-v20170509", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "62306050372", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7631776031046993583", + "creationTimestamp": "2017-06-19T13:46:56.914-07:00", + "name": "windows-server-2012-r2-dc-v20170615", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "71196261249", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "1857632280454523413", + "creationTimestamp": "2017-07-13T13:15:54.385-07:00", + "name": "windows-server-2012-r2-dc-v20170711", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "78652801206", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "2823219573730409706", + "creationTimestamp": "2017-08-10T13:28:53.827-07:00", + "name": "windows-server-2012-r2-dc-v20170808", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "85354691449", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7418120116940676584", + "creationTimestamp": "2017-09-18T12:48:23.506-07:00", + "name": "windows-server-2012-r2-dc-v20170913", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "93342790656", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "2282957188055046289", + "creationTimestamp": "2017-10-12T10:29:34.375-07:00", + "name": "windows-server-2012-r2-dc-v20171010", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "90944357376", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6881089719873072014", + "creationTimestamp": "2017-11-16T10:13:53.369-08:00", + "name": "windows-server-2012-r2-dc-v20171114", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "104260688896", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "2763651559863578562", + "creationTimestamp": "2017-12-14T11:29:49.523-08:00", + "name": "windows-server-2012-r2-dc-v20171212", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "103522475264", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "1746532866713182420", + "creationTimestamp": "2018-01-10T10:41:00.149-08:00", + "name": "windows-server-2012-r2-dc-v20180109", + "description": "Microsoft, Windows Server, 2012 R2, Server with Desktop Experience, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "119462530560", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "3635602256783188777", + "creationTimestamp": "2018-02-15T15:54:46.956-08:00", + "name": "windows-server-2012-r2-dc-v20180213", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter, Server with Desktop Experience, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "121528277760", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7812193167406990904", + "creationTimestamp": "2018-03-15T11:17:59.900-07:00", + "name": "windows-server-2012-r2-dc-v20180313", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter, Server with Desktop Experience, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "120425533440", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "4428506202344924727", + "creationTimestamp": "2018-04-12T10:35:21.041-07:00", + "name": "windows-server-2012-r2-dc-v20180410", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter, Server with Desktop Experience, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "121172647680", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "8703553912471933771", + "creationTimestamp": "2018-05-10T09:04:53.198-07:00", + "name": "windows-server-2012-r2-dc-v20180508", + "description": "Microsoft, Windows Server, 2012 R2 Datacenter, Server with Desktop Experience, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "123462385920", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "windows-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2012-r2-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6708548956505398553", + "creationTimestamp": "2017-01-18T13:53:58.313-08:00", + "name": "windows-server-2016-dc-core-v20170117", + "description": "Microsoft, Windows Server, 2016 Core, Server Core, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "24101983416", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "5289214173861979888", + "creationTimestamp": "2017-02-21T11:42:23.119-08:00", + "name": "windows-server-2016-dc-core-v20170214", + "description": "Microsoft, Windows Server, 2016 Core, Server Core, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "24589550796", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "2276202355529774889", + "creationTimestamp": "2017-04-13T11:56:06.133-07:00", + "name": "windows-server-2016-dc-core-v20170411", + "description": "Microsoft, Windows Server, 2016 Core, Server Core, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "31293567150", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "5866609575479249401", + "creationTimestamp": "2017-04-17T14:43:50.866-07:00", + "name": "windows-server-2016-dc-core-v20170417", + "description": "Microsoft, Windows Server, 2016 Core, Server Core, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "31334570336", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "8339919007469103597", + "creationTimestamp": "2017-05-11T14:26:26.345-07:00", + "name": "windows-server-2016-dc-core-v20170509", + "description": "Microsoft, Windows Server, 2016 Core, Server Core, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "32142887906", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "286709689425955518", + "creationTimestamp": "2017-06-19T13:30:09.587-07:00", + "name": "windows-server-2016-dc-core-v20170615", + "description": "Microsoft, Windows Server, 2016 Core, Server Core, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "39276722256", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "7407532958137610315", + "creationTimestamp": "2017-07-13T12:48:52.726-07:00", + "name": "windows-server-2016-dc-core-v20170711", + "description": "Microsoft, Windows Server, 2016 Core, Server Core, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "46352911218", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "5539651328908819317", + "creationTimestamp": "2017-08-10T13:44:10.940-07:00", + "name": "windows-server-2016-dc-core-v20170808", + "description": "Microsoft, Windows Server, 2016 Core, Server Core, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "50499219757", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "1431997636980611574", + "creationTimestamp": "2017-09-18T13:05:45.646-07:00", + "name": "windows-server-2016-dc-core-v20170913", + "description": "Microsoft, Windows Server, 2016 Core, Server Core, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "51331906560", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "8946715216858718185", + "creationTimestamp": "2017-10-12T10:06:14.642-07:00", + "name": "windows-server-2016-dc-core-v20171010", + "description": "Microsoft, Windows Server, 2016 Core, Server Core, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "53795521536", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "5391301878562712472", + "creationTimestamp": "2017-11-16T10:14:15.289-08:00", + "name": "windows-server-2016-dc-core-v20171114", + "description": "Microsoft, Windows Server, 2016 Core, Server Core, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "58829967872", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "6144971254922178853", + "creationTimestamp": "2017-12-14T11:23:54.793-08:00", + "name": "windows-server-2016-dc-core-v20171212", + "description": "Microsoft, Windows Server, 2016 Core, Server Core, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "56651758592", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "423650684340789811", + "creationTimestamp": "2018-01-10T10:35:08.705-08:00", + "name": "windows-server-2016-dc-core-v20180109", + "description": "Microsoft, Windows Server, 2016 Core, Server Core, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "64473968640", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "1891792315667425250", + "creationTimestamp": "2018-02-15T15:34:38.433-08:00", + "name": "windows-server-2016-dc-core-v20180213", + "description": "Microsoft, Windows Server, 2016 Datacenter Core, Server Core, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "67989964800", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "8655941202103174713", + "creationTimestamp": "2018-03-15T11:17:59.754-07:00", + "name": "windows-server-2016-dc-core-v20180313", + "description": "Microsoft, Windows Server, 2016 Datacenter Core, Server Core, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "69077352960", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "8626568504887354935", + "creationTimestamp": "2018-04-12T10:35:20.750-07:00", + "name": "windows-server-2016-dc-core-v20180410", + "description": "Microsoft, Windows Server, 2016 Datacenter Core, Server Core, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "70532436480", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "1930071658372649803", + "creationTimestamp": "2018-05-10T09:04:53.238-07:00", + "name": "windows-server-2016-dc-core-v20180508", + "description": "Microsoft, Windows Server, 2016 Datacenter Core, Server Core, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "77520168960", + "diskSizeGb": "32", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-core" + ], + "family": "windows-2016-core", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-core-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000213", + "1000226" + ] + }, + { + "kind": "compute#image", + "id": "7629833301354173227", + "creationTimestamp": "2016-10-17T08:27:00.821-07:00", + "name": "windows-server-2016-dc-v20161012", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2016-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20161115" + }, + "status": "READY", + "archiveSizeBytes": "5676362654", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20161012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "6187901531841623363", + "creationTimestamp": "2016-11-17T16:30:36.196-08:00", + "name": "windows-server-2016-dc-v20161115", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2016-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20161213" + }, + "status": "READY", + "archiveSizeBytes": "34835071938", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20161115", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "8474028059899375421", + "creationTimestamp": "2016-12-15T13:57:38.011-08:00", + "name": "windows-server-2016-dc-v20161213", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2016-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "34879245330", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20161213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "7136823428607273663", + "creationTimestamp": "2017-01-18T12:47:12.458-08:00", + "name": "windows-server-2016-dc-v20170117", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "36766386078", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "8296515343552162494", + "creationTimestamp": "2017-02-21T11:26:09.948-08:00", + "name": "windows-server-2016-dc-v20170214", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170227" + }, + "status": "READY", + "archiveSizeBytes": "37254334824", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "2977188267169104106", + "creationTimestamp": "2017-03-07T10:37:57.703-08:00", + "name": "windows-server-2016-dc-v20170227", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2017-02-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "37294274376", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170227", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "7008630156734657607", + "creationTimestamp": "2017-04-13T11:59:52.739-07:00", + "name": "windows-server-2016-dc-v20170411", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "48149564910", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "7247321345008633022", + "creationTimestamp": "2017-04-17T14:57:37.522-07:00", + "name": "windows-server-2016-dc-v20170417", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "48555694669", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "167638103462863980", + "creationTimestamp": "2017-05-11T14:41:23.028-07:00", + "name": "windows-server-2016-dc-v20170509", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "48059129268", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "8378103564540938708", + "creationTimestamp": "2017-06-19T13:42:35.693-07:00", + "name": "windows-server-2016-dc-v20170615", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "54019156971", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "5886610572481031227", + "creationTimestamp": "2017-07-13T13:06:44.725-07:00", + "name": "windows-server-2016-dc-v20170711", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "60649407956", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1020609451568232951", + "creationTimestamp": "2017-08-10T13:50:32.419-07:00", + "name": "windows-server-2016-dc-v20170808", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "74581242070", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1931183247500091764", + "creationTimestamp": "2017-09-18T12:33:47.439-07:00", + "name": "windows-server-2016-dc-v20170913", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "75666898944", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "360011514007132860", + "creationTimestamp": "2017-10-12T10:20:20.092-07:00", + "name": "windows-server-2016-dc-v20171010", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "80371580928", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "4675502019125995926", + "creationTimestamp": "2017-11-16T10:22:49.403-08:00", + "name": "windows-server-2016-dc-v20171114", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "88550352384", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "25703517475793819", + "creationTimestamp": "2017-12-14T11:48:04.204-08:00", + "name": "windows-server-2016-dc-v20171212", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "85156008704", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1174947318902548056", + "creationTimestamp": "2018-01-10T10:17:27.863-08:00", + "name": "windows-server-2016-dc-v20180109", + "description": "Microsoft, Windows Server, 2016, Server with Desktop Experience, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "94266351360", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "7754539566537353185", + "creationTimestamp": "2018-02-15T15:34:38.683-08:00", + "name": "windows-server-2016-dc-v20180213", + "description": "Microsoft, Windows Server, 2016 Datacenter, Server with Desktop Experience, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "102871998720", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "4362170191934064185", + "creationTimestamp": "2018-03-15T11:17:59.731-07:00", + "name": "windows-server-2016-dc-v20180313", + "description": "Microsoft, Windows Server, 2016 Datacenter, Server with Desktop Experience, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "105904181760", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1048391000799716919", + "creationTimestamp": "2018-04-12T10:35:21.336-07:00", + "name": "windows-server-2016-dc-v20180410", + "description": "Microsoft, Windows Server, 2016 Datacenter, Server with Desktop Experience, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "108093511680", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "2451064879438222155", + "creationTimestamp": "2018-05-10T09:04:53.351-07:00", + "name": "windows-server-2016-dc-v20180508", + "description": "Microsoft, Windows Server, 2016 Datacenter, Server with Desktop Experience, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "119602287360", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "windows-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images/windows-server-2016-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/images" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:02 GMT + recorded_at: Fri, 11 May 2018 14:32:54 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-west1/targetPools + uri: https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:54 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:02 GMT + - Fri, 11 May 2018 14:32:55 GMT Date: - - Fri, 02 Jun 2017 19:26:02 GMT + - Fri, 11 May 2018 14:32:55 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/TyBCSLXJnKWfhjWfbuB5MoyquXc"' + - '"lzI6SKSL6iW00lI9fxk_B2xQnxw=/wBnvPqM1tqFEdiUN-PV0fHscl2g="' Vary: - Origin - X-Origin @@ -7235,52 +43828,12869 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAJ2OQQ6CMBAA77yC1Ktl0+CJN3DwC1DXulK7DbvQg/HvIjHx - 7n0yM8+qNhOli+lq4/mRF8WDDnNAPTPHnkTNcUNoB/LMd/Qq4GmlaHUZ0TrX - tu4EMwbiJLCILSjq4CeR3SAYrz2l6eO5qWbpAEopTWAOEYdM0mx9+D7A6uDf - WvWq3qL2jMHWAAAA + encoding: UTF-8 + string: | + { + "kind": "compute#imageList", + "id": "projects/windows-sql-cloud/global/images", + "items": [ + { + "kind": "compute#image", + "id": "556841979612387499", + "creationTimestamp": "2017-01-18T14:03:48.492-08:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20170117", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "102385346004", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000222" + ] + }, + { + "kind": "compute#image", + "id": "9109733964729380359", + "creationTimestamp": "2017-02-21T15:44:40.237-08:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20170214", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "103244117478", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000222" + ] + }, + { + "kind": "compute#image", + "id": "4272849406384035026", + "creationTimestamp": "2017-04-13T14:14:37.773-07:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20170411", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "120358684103", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000222" + ] + }, + { + "kind": "compute#image", + "id": "8067400588030673611", + "creationTimestamp": "2017-04-17T15:05:24.719-07:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20170417", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "122065039740", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000222" + ] + }, + { + "kind": "compute#image", + "id": "1421694663277500331", + "creationTimestamp": "2017-05-11T15:44:20.611-07:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20170509", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "140562824320", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000222" + ] + }, + { + "kind": "compute#image", + "id": "3499215922548565986", + "creationTimestamp": "2017-06-19T16:06:53.092-07:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20170615", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "157769530434", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000222" + ] + }, + { + "kind": "compute#image", + "id": "3584159827221961449", + "creationTimestamp": "2017-07-13T14:20:06.549-07:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20170711", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "175291318740", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000222" + ] + }, + { + "kind": "compute#image", + "id": "6714977603429690660", + "creationTimestamp": "2017-08-10T14:44:43.437-07:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20170808", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "190939079463", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000222", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6434600781136492704", + "creationTimestamp": "2017-09-14T11:11:27.438-07:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20170913", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "209108192256", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000222", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6887951372557356454", + "creationTimestamp": "2017-10-12T11:24:09.350-07:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20171010", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "211204285440", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000222", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6207141958798828237", + "creationTimestamp": "2017-11-16T10:42:42.541-08:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20171114", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "229053473792", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000222", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "3049025830008081528", + "creationTimestamp": "2017-12-14T13:52:23.785-08:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20171212", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "225811688960", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000222", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6196142946991727094", + "creationTimestamp": "2018-01-10T10:44:41.232-08:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20180109", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "273271845120", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000222", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "2902061085742571954", + "creationTimestamp": "2018-02-15T16:01:33.887-08:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20180213", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "288584010240", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000222", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "691184437710397342", + "creationTimestamp": "2018-03-16T12:56:34.051-07:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20180313", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "292570851840", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000222", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7353858103242270551", + "creationTimestamp": "2018-04-12T10:39:05.404-07:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20180410", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "292329968640", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000222", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "1019245107915378216", + "creationTimestamp": "2018-05-10T09:18:16.013-07:00", + "name": "sql-2012-enterprise-windows-2012-r2-dc-v20180508", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "294630520320", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-enterprise-windows-2012-r2-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000222", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "2230169106552879919", + "creationTimestamp": "2016-07-20T11:41:04.121-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20160719", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-07-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20160809" + }, + "status": "READY", + "archiveSizeBytes": "16507449041", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20160719", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4544116959570102530", + "creationTimestamp": "2016-08-11T10:37:49.783-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20160809", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2016-08-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20160916" + }, + "status": "READY", + "archiveSizeBytes": "15877197731", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20160809", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "6316044754497426550", + "creationTimestamp": "2016-09-22T16:34:49.719-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20160916", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2016-09-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20161012" + }, + "status": "READY", + "archiveSizeBytes": "15824452939", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20160916", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "1092800232534133470", + "creationTimestamp": "2016-10-17T08:54:25.641-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20161012", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2016-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20161115" + }, + "status": "READY", + "archiveSizeBytes": "16343066816", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20161012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "1304096332683929618", + "creationTimestamp": "2016-11-17T17:18:53.487-08:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20161115", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2016-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20161213" + }, + "status": "READY", + "archiveSizeBytes": "103353667104", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20161115", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "2229900237268701743", + "creationTimestamp": "2016-12-19T15:26:56.880-08:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20161213", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2016-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "104326097586", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20161213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000220" + ] + }, + { + "kind": "compute#image", + "id": "8738036877788081280", + "creationTimestamp": "2017-01-18T12:39:11.563-08:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20170117", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "102710737848", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000220" + ] + }, + { + "kind": "compute#image", + "id": "7287202242355100898", + "creationTimestamp": "2017-02-21T14:41:17.585-08:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20170214", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "104874222210", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000220" + ] + }, + { + "kind": "compute#image", + "id": "5959624157493881411", + "creationTimestamp": "2017-04-13T12:42:36.293-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20170411", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "122810661631", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000220" + ] + }, + { + "kind": "compute#image", + "id": "4823224941104660059", + "creationTimestamp": "2017-04-17T15:24:52.457-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20170417", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "122727280221", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000220" + ] + }, + { + "kind": "compute#image", + "id": "2789296869769566854", + "creationTimestamp": "2017-05-11T15:23:37.866-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20170509", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "140342580720", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000220" + ] + }, + { + "kind": "compute#image", + "id": "1515501709712288973", + "creationTimestamp": "2017-06-19T15:37:22.880-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20170615", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "158764237290", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000220" + ] + }, + { + "kind": "compute#image", + "id": "7488472222421107937", + "creationTimestamp": "2017-07-13T15:54:06.840-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20170711", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "177451184490", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000220" + ] + }, + { + "kind": "compute#image", + "id": "944054846382758250", + "creationTimestamp": "2017-08-10T16:08:53.804-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20170808", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "190851054295", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000220", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6461760840056375975", + "creationTimestamp": "2017-09-14T09:54:32.251-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20170913", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "206069173248", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000220", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "9223161959391853734", + "creationTimestamp": "2017-10-12T12:28:09.820-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20171010", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "213574358016", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000220", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "5446703580836816469", + "creationTimestamp": "2017-11-16T10:28:10.296-08:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20171114", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "229049852928", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000220", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "4016210696510331164", + "creationTimestamp": "2017-12-14T13:06:59.196-08:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20171212", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "225902753024", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000220", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7368752315395467083", + "creationTimestamp": "2018-01-10T10:21:24.822-08:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20180109", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "274682757120", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000220", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "2617466545435812274", + "creationTimestamp": "2018-02-15T16:01:34.070-08:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20180213", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "288541962240", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000220", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7039869042978561950", + "creationTimestamp": "2018-03-16T12:56:34.100-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20180313", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "289458120960", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000220", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "5547730072152188759", + "creationTimestamp": "2018-04-12T10:39:05.129-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20180410", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "292180869120", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000220", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7282979847093734952", + "creationTimestamp": "2018-05-10T09:18:15.926-07:00", + "name": "sql-2012-standard-windows-2012-r2-dc-v20180508", + "description": "Microsoft, SQL Server 2012 Standard, on Windows Server 2012 R2 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "292574630400", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000220", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "2419939552171900433", + "creationTimestamp": "2016-08-15T10:50:54.594-07:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20160809", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2016-08-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20160916" + }, + "status": "READY", + "archiveSizeBytes": "15400118968", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20160809", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "6785670836717736294", + "creationTimestamp": "2016-09-22T16:55:53.862-07:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20160916", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2016-09-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20161012" + }, + "status": "READY", + "archiveSizeBytes": "15486670281", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20160916", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "7827832032434147147", + "creationTimestamp": "2016-10-17T08:43:32.984-07:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20161012", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2016-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20161115" + }, + "status": "READY", + "archiveSizeBytes": "15881598100", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20161012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "2840432827684873758", + "creationTimestamp": "2016-11-17T17:27:13.236-08:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20161115", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2016-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20161213" + }, + "status": "READY", + "archiveSizeBytes": "100313786736", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20161115", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "257675246632814223", + "creationTimestamp": "2016-12-19T16:16:32.420-08:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20161213", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2016-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "100876140540", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20161213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000223" + ] + }, + { + "kind": "compute#image", + "id": "584795860157752316", + "creationTimestamp": "2017-01-18T13:24:35.373-08:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20170117", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "99215720628", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000223" + ] + }, + { + "kind": "compute#image", + "id": "3471426728197425520", + "creationTimestamp": "2017-02-21T13:56:47.992-08:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20170214", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "100099865934", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000223" + ] + }, + { + "kind": "compute#image", + "id": "212166773880021670", + "creationTimestamp": "2017-04-13T13:15:05.230-07:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20170411", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "118995286578", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000223" + ] + }, + { + "kind": "compute#image", + "id": "4328108571579941054", + "creationTimestamp": "2017-04-17T15:14:41.904-07:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20170417", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "116644995131", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000223" + ] + }, + { + "kind": "compute#image", + "id": "7528110814897159989", + "creationTimestamp": "2017-05-11T17:29:14.962-07:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20170509", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "133969964392", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000223" + ] + }, + { + "kind": "compute#image", + "id": "8600427877988955605", + "creationTimestamp": "2017-06-19T15:07:54.205-07:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20170615", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "153061239564", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000223" + ] + }, + { + "kind": "compute#image", + "id": "1153627071227514671", + "creationTimestamp": "2017-07-13T15:18:40.273-07:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20170711", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "170150307690", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000223" + ] + }, + { + "kind": "compute#image", + "id": "7714017628186040085", + "creationTimestamp": "2017-08-10T16:19:22.172-07:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20170808", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "186946421937", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000223", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "1580422957876314388", + "creationTimestamp": "2017-09-14T10:44:27.655-07:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20170913", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "199786014720", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000223", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "5159884840223512969", + "creationTimestamp": "2017-10-12T10:33:26.675-07:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20171010", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "205494030336", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000223", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "4049821684639752693", + "creationTimestamp": "2017-11-16T10:55:22.515-08:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20171114", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "227615318528", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000223", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7622479368121439203", + "creationTimestamp": "2017-12-14T13:28:44.412-08:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20171212", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "220009494016", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000223", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7117006891854324384", + "creationTimestamp": "2018-01-10T10:32:47.459-08:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20180109", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "266352817920", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000223", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "4332912221881082290", + "creationTimestamp": "2018-02-15T16:01:34.001-08:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20180213", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "280713212160", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000223", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "8315170259090907038", + "creationTimestamp": "2018-03-16T12:56:33.984-07:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20180313", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "281538677760", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000223", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "4921815193796880215", + "creationTimestamp": "2018-04-12T10:39:05.145-07:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20180410", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "281565246720", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000223", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7145576198252908072", + "creationTimestamp": "2018-05-10T09:18:16.436-07:00", + "name": "sql-2012-web-windows-2012-r2-dc-v20180508", + "description": "Microsoft, SQL Server 2012 Web, on Windows Server 2012 R2 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "286145817600", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-web-windows-2012-r2-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000223", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "8600110467002817896", + "creationTimestamp": "2017-01-18T13:52:07.114-08:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20170117", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2012 R2, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "98501450748", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000216" + ] + }, + { + "kind": "compute#image", + "id": "3324999924298351144", + "creationTimestamp": "2017-02-21T14:18:47.103-08:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20170214", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2012 R2, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "92768526084", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000216" + ] + }, + { + "kind": "compute#image", + "id": "4037273349301364527", + "creationTimestamp": "2017-04-13T13:04:16.839-07:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20170411", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2012 R2, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "108623849369", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000216" + ] + }, + { + "kind": "compute#image", + "id": "4776659141904598884", + "creationTimestamp": "2017-04-17T14:54:19.466-07:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20170417", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2012 R2, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "108427845050", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000216" + ] + }, + { + "kind": "compute#image", + "id": "5018665791549686353", + "creationTimestamp": "2017-05-11T17:07:26.650-07:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20170509", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2012 R2, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "122138798256", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000216" + ] + }, + { + "kind": "compute#image", + "id": "8253192772973357656", + "creationTimestamp": "2017-06-19T15:48:23.330-07:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20170615", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2012 R2, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "140401828818", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000216" + ] + }, + { + "kind": "compute#image", + "id": "7469727769665620399", + "creationTimestamp": "2017-07-13T15:42:08.435-07:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20170711", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2012 R2, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "156034085570", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000216" + ] + }, + { + "kind": "compute#image", + "id": "5017649155600899248", + "creationTimestamp": "2017-08-10T15:46:55.453-07:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20170808", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2012 R2, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "170380196525", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "256791767567241144", + "creationTimestamp": "2017-09-14T09:41:59.738-07:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20170913", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2012 R2, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "184330573824", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "5947714844562168440", + "creationTimestamp": "2017-10-12T10:21:27.790-07:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20171010", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2012 R2, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "190100189184", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "962530872230176288", + "creationTimestamp": "2017-11-16T10:28:31.517-08:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20171114", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2012 R2, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "203274862336", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "3246855463930644788", + "creationTimestamp": "2017-12-14T14:14:51.945-08:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20171212", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2012 R2, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "204304429056", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "8987366536813207260", + "creationTimestamp": "2018-01-10T10:49:23.433-08:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20180109", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2012 R2, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "242426868480", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "8852773467312595378", + "creationTimestamp": "2018-02-15T16:01:33.872-08:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20180213", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "237815827200", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6850934007153139585", + "creationTimestamp": "2018-03-16T12:56:31.079-07:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20180313", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "241746543360", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "4298780623589484375", + "creationTimestamp": "2018-04-12T10:39:05.354-07:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20180410", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "241684684800", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "5225074944711970344", + "creationTimestamp": "2018-05-10T09:18:16.502-07:00", + "name": "sql-2014-enterprise-windows-2012-r2-dc-v20180508", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2012 R2 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "243695654400", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2012-r2-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "711042708682134013", + "creationTimestamp": "2017-08-10T16:41:06.021-07:00", + "name": "sql-2014-enterprise-windows-2016-dc-v20170808", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2016, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "153771210208", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "1911139859189691044", + "creationTimestamp": "2017-09-14T11:36:59.101-07:00", + "name": "sql-2014-enterprise-windows-2016-dc-v20170913", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2016, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "162849343488", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "538456903960919174", + "creationTimestamp": "2017-10-12T12:28:41.600-07:00", + "name": "sql-2014-enterprise-windows-2016-dc-v20171010", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2016, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "167471652864", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "3692600896625074857", + "creationTimestamp": "2017-11-16T10:43:18.562-08:00", + "name": "sql-2014-enterprise-windows-2016-dc-v20171114", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2016, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "183018038528", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "4487587300026313767", + "creationTimestamp": "2017-12-14T11:36:40.371-08:00", + "name": "sql-2014-enterprise-windows-2016-dc-v20171212", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2016, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "178902380800", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "3745357281302931836", + "creationTimestamp": "2018-01-10T10:12:35.314-08:00", + "name": "sql-2014-enterprise-windows-2016-dc-v20180109", + "description": "Microsoft, SQL Server 2014 Enterprise, on Windows Server 2016, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "203544414720", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2014-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000216", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "130867174690234802", + "creationTimestamp": "2018-02-15T16:01:33.900-08:00", + "name": "sql-2014-enterprise-windows-2016-dc-v20180213", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2016 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "210817340160", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2014-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000216", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "8779506358941753246", + "creationTimestamp": "2018-03-16T12:56:34.317-07:00", + "name": "sql-2014-enterprise-windows-2016-dc-v20180313", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2016 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "215371714560", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2014-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000216", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "563366099318613847", + "creationTimestamp": "2018-04-12T10:39:05.345-07:00", + "name": "sql-2014-enterprise-windows-2016-dc-v20180410", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2016 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "216319960320", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2014-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000216", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1493982686549233195", + "creationTimestamp": "2018-05-10T09:18:12.911-07:00", + "name": "sql-2014-enterprise-windows-2016-dc-v20180508", + "description": "Microsoft, SQL Server 2012 Enterprise, on Windows Server 2016 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "228142644480", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2014-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-enterprise-windows-2016-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000216", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "8390637507492083853", + "creationTimestamp": "2016-07-20T11:43:46.050-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20160719", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-07-19", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20160809" + }, + "status": "READY", + "archiveSizeBytes": "16039077448", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20160719", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3094229136806315133", + "creationTimestamp": "2016-08-11T10:49:06.579-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20160809", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2016-08-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20160916" + }, + "status": "READY", + "archiveSizeBytes": "15425727491", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20160809", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "3247196720635433485", + "creationTimestamp": "2016-09-22T16:44:34.369-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20160916", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2016-09-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20161012" + }, + "status": "READY", + "archiveSizeBytes": "15550421022", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20160916", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "4590790540935120548", + "creationTimestamp": "2016-10-17T09:11:55.587-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20161012", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2016-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20161115" + }, + "status": "READY", + "archiveSizeBytes": "15885206222", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20161012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "4911630185696323412", + "creationTimestamp": "2016-11-17T17:30:35.475-08:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20161115", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2016-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20161213" + }, + "status": "READY", + "archiveSizeBytes": "98820010740", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20161115", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "5012605021451571646", + "creationTimestamp": "2016-12-19T15:37:53.742-08:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20161213", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2016-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "99965577270", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20161213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000215" + ] + }, + { + "kind": "compute#image", + "id": "4880826517045799919", + "creationTimestamp": "2017-01-18T12:50:08.665-08:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20170117", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "99856087602", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000215" + ] + }, + { + "kind": "compute#image", + "id": "6820599409089278160", + "creationTimestamp": "2017-02-21T15:33:19.900-08:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20170214", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "92913899160", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000215" + ] + }, + { + "kind": "compute#image", + "id": "3203042021535272768", + "creationTimestamp": "2017-04-13T14:46:23.950-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20170411", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "108675236509", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000215" + ] + }, + { + "kind": "compute#image", + "id": "1372279917757631442", + "creationTimestamp": "2017-04-17T14:35:57.564-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20170417", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "108292334640", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000215" + ] + }, + { + "kind": "compute#image", + "id": "7675686638512066108", + "creationTimestamp": "2017-05-11T16:16:35.715-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20170509", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "122751007128", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000215" + ] + }, + { + "kind": "compute#image", + "id": "849689054783330387", + "creationTimestamp": "2017-06-19T17:05:16.313-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20170615", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "140967242433", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000215" + ] + }, + { + "kind": "compute#image", + "id": "5767939591005422136", + "creationTimestamp": "2017-07-13T16:05:59.846-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20170711", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "156204141190", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000215" + ] + }, + { + "kind": "compute#image", + "id": "8420903729676514622", + "creationTimestamp": "2017-08-10T14:10:41.885-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20170808", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "168683133245", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000215", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "9001262031656418732", + "creationTimestamp": "2017-09-14T10:58:27.729-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20170913", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "184021195776", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000215", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "1817609485967063911", + "creationTimestamp": "2017-10-12T12:42:00.884-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20171010", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "188146470912", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000215", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "4837403366854254945", + "creationTimestamp": "2017-11-16T10:57:19.032-08:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20171114", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "207365270528", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000215", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "471621904208184440", + "creationTimestamp": "2017-12-14T14:26:31.163-08:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20171212", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "203412065792", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000215", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "427316340143678665", + "creationTimestamp": "2018-01-10T10:23:34.925-08:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20180109", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "243004277760", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000215", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7514994100679713202", + "creationTimestamp": "2018-02-15T16:01:33.998-08:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20180213", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "237765780480", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000215", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "2727026445279928222", + "creationTimestamp": "2018-03-16T12:56:34.015-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20180313", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "241815690240", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000215", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6008868560261228375", + "creationTimestamp": "2018-04-12T10:39:05.133-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20180410", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "241044852480", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000215", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "2376542768741338664", + "creationTimestamp": "2018-05-10T09:18:16.228-07:00", + "name": "sql-2014-standard-windows-2012-r2-dc-v20180508", + "description": "Microsoft, SQL Server 2014 Standard, on Windows Server 2012 R2 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "243592231680", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000215", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "908147777360118386", + "creationTimestamp": "2016-08-15T10:32:13.192-07:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20160809", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2016-08-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20160916" + }, + "status": "READY", + "archiveSizeBytes": "13836587413", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20160809", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "8341301119381261629", + "creationTimestamp": "2016-09-22T17:14:10.742-07:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20160916", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2016-09-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20161012" + }, + "status": "READY", + "archiveSizeBytes": "14013180642", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20160916", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "5134620687229080927", + "creationTimestamp": "2016-10-17T08:18:08.312-07:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20161012", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2016-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20161115" + }, + "status": "READY", + "archiveSizeBytes": "14308551968", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20161012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "820163615616395944", + "creationTimestamp": "2016-11-17T17:07:19.912-08:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20161115", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2016-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20161213" + }, + "status": "READY", + "archiveSizeBytes": "88987945038", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20161115", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "4461674418043995085", + "creationTimestamp": "2016-12-19T16:36:50.679-08:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20161213", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2016-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "90277910970", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20161213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000217" + ] + }, + { + "kind": "compute#image", + "id": "50309745928725659", + "creationTimestamp": "2017-01-18T13:13:24.676-08:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20170117", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "90223948110", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000217" + ] + }, + { + "kind": "compute#image", + "id": "3670758514046892487", + "creationTimestamp": "2017-02-21T15:03:04.379-08:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20170214", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "89306072880", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000217" + ] + }, + { + "kind": "compute#image", + "id": "8354899767473626587", + "creationTimestamp": "2017-04-13T13:44:36.320-07:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20170411", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "104528158000", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000217" + ] + }, + { + "kind": "compute#image", + "id": "8935432118710339972", + "creationTimestamp": "2017-04-17T14:45:15.642-07:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20170417", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "104114347190", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000217" + ] + }, + { + "kind": "compute#image", + "id": "6717560523757013329", + "creationTimestamp": "2017-05-11T16:46:06.618-07:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20170509", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "120975615544", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000217" + ] + }, + { + "kind": "compute#image", + "id": "2306599316579801754", + "creationTimestamp": "2017-06-19T16:55:33.696-07:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20170615", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "137856949623", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000217" + ] + }, + { + "kind": "compute#image", + "id": "9042977580135369324", + "creationTimestamp": "2017-07-13T15:30:27.882-07:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20170711", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "152356739600", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000217" + ] + }, + { + "kind": "compute#image", + "id": "8681671191584400949", + "creationTimestamp": "2017-08-10T15:06:18.062-07:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20170808", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "165999147589", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000217", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7583708539468083701", + "creationTimestamp": "2017-09-14T11:48:58.834-07:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20170913", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "177580532736", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000217", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "4971992403414229414", + "creationTimestamp": "2017-10-12T09:58:49.849-07:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20171010", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "181684220928", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000217", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "1200829311513287847", + "creationTimestamp": "2017-11-16T11:08:56.522-08:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20171114", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "197279746560", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000217", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7859802068144315366", + "creationTimestamp": "2017-12-14T12:54:33.840-08:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20171212", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "198281760768", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000217", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "2131214060710781828", + "creationTimestamp": "2018-01-10T10:37:31.713-08:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20180109", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "237625681920", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000217", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "867100083339633074", + "creationTimestamp": "2018-02-15T16:01:34.235-08:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20180213", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "233193984000", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000217", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "8854164671641526174", + "creationTimestamp": "2018-03-16T12:56:34.136-07:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20180313", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "235978583040", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000217", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "8629200813033662295", + "creationTimestamp": "2018-04-12T10:39:05.355-07:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20180410", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "236791787520", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000217", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "9084320462822559272", + "creationTimestamp": "2018-05-10T09:18:16.222-07:00", + "name": "sql-2014-web-windows-2012-r2-dc-v20180508", + "description": "Microsoft, SQL Server 2014 Web, on Windows Server 2012 R2 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "237542760960", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-web-windows-2012-r2-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000217", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6770611586119915048", + "creationTimestamp": "2017-01-18T14:14:32.016-08:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20170117", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "89254770462", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "4590368023516378435", + "creationTimestamp": "2017-02-21T15:22:20.173-08:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20170214", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "91704700080", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "7465239150858490333", + "creationTimestamp": "2017-04-13T14:35:46.752-07:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20170411", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "112217958839", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "1204649577577745728", + "creationTimestamp": "2017-04-17T14:29:19.937-07:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20170417", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "112196836612", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "324295201633424660", + "creationTimestamp": "2017-05-11T15:55:55.489-07:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20170509", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "128237305736", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "2510204221226604503", + "creationTimestamp": "2017-06-19T17:15:52.684-07:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20170615", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "146415947211", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "3759788092291700617", + "creationTimestamp": "2017-07-13T14:43:02.292-07:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20170711", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "163695830410", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "7950700987967172724", + "creationTimestamp": "2017-08-10T14:22:35.344-07:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20170808", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "179749074670", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000219", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6210474020238202192", + "creationTimestamp": "2017-09-14T09:18:07.719-07:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20170913", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "188256224256", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000219", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "3525554298382607325", + "creationTimestamp": "2017-10-12T14:22:58.915-07:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20171010", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "212326106112", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000219", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "463273372548096740", + "creationTimestamp": "2017-11-16T10:42:19.485-08:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20171114", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "231402938624", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000219", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6121512568753185949", + "creationTimestamp": "2017-12-14T12:09:22.195-08:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20171212", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "228483024640", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000219", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "3315282870011683062", + "creationTimestamp": "2018-01-10T10:40:25.732-08:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20180109", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "272364610560", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000219", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "4002242328984789426", + "creationTimestamp": "2018-02-15T16:01:33.867-08:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20180213", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "273076657920", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000219", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7568452089731456926", + "creationTimestamp": "2018-03-16T12:56:34.145-07:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20180313", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "275054722560", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000219", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "70149496908162903", + "creationTimestamp": "2018-04-12T10:39:05.356-07:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20180410", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "282032870400", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000219", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "2164033739759930920", + "creationTimestamp": "2018-05-10T09:18:16.015-07:00", + "name": "sql-2016-enterprise-windows-2012-r2-dc-v20180508", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2012 R2 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "267826421760", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-ent-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2012-r2-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000219", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "5052139190386578901", + "creationTimestamp": "2017-01-18T14:24:58.036-08:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20170117", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "81089051490", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "5338754822030060842", + "creationTimestamp": "2017-02-21T15:56:53.269-08:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20170214", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170227" + }, + "status": "READY", + "archiveSizeBytes": "83231232372", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "634832594215847765", + "creationTimestamp": "2017-03-07T10:19:38.876-08:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20170227", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016, x64 built on 2017-02-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "80562843006", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170227", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "8157220204003348995", + "creationTimestamp": "2017-04-13T14:26:04.838-07:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20170411", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "107349249672", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "959480792643830953", + "creationTimestamp": "2017-04-17T14:57:26.926-07:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20170417", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "107561504659", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "1057671510354379951", + "creationTimestamp": "2017-05-11T16:56:48.614-07:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20170509", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "121328936936", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "6504347893236096720", + "creationTimestamp": "2017-06-19T16:37:35.278-07:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20170615", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "135978228468", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "2512632917856502136", + "creationTimestamp": "2017-07-13T16:17:43.810-07:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20170711", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "140606608920", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000219" + ] + }, + { + "kind": "compute#image", + "id": "5414169409770057683", + "creationTimestamp": "2017-08-10T14:33:48.298-07:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20170808", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "156336477836", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000219", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "6572213032243918721", + "creationTimestamp": "2017-09-14T11:24:46.648-07:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20170913", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "165253699584", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000219", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "6270678071480838471", + "creationTimestamp": "2017-10-12T13:59:20.276-07:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20171010", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "168502047744", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000219", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "330523475391306465", + "creationTimestamp": "2017-11-16T11:16:30.875-08:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20171114", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "185203206656", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000219", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "7105918531830497546", + "creationTimestamp": "2017-12-14T14:49:09.273-08:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20171212", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "181510657536", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000219", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "6998144062779546894", + "creationTimestamp": "2018-01-10T11:05:05.573-08:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20180109", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "207764025600", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000219", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "380934271040987570", + "creationTimestamp": "2018-02-15T16:01:34.061-08:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20180213", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "212946673920", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000219", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "8158037467522506654", + "creationTimestamp": "2018-03-16T12:56:34.162-07:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20180313", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "217748267520", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000219", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "3839933375978809175", + "creationTimestamp": "2018-04-12T10:39:05.245-07:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20180410", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "217090759680", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000219", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "6266621934379322920", + "creationTimestamp": "2018-05-10T09:18:16.025-07:00", + "name": "sql-2016-enterprise-windows-2016-dc-v20180508", + "description": "Microsoft, SQL Server 2016 Enterprise, on Windows Server 2016 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "229564089600", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-enterprise-windows-2016-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000219", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "3466717958034658146", + "creationTimestamp": "2016-08-15T14:01:01.081-07:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20160809", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2016-08-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20160916" + }, + "status": "READY", + "archiveSizeBytes": "10382037557", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20160809", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "6629356403922947846", + "creationTimestamp": "2016-09-22T17:06:01.129-07:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20160916", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2016-09-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20161012" + }, + "status": "READY", + "archiveSizeBytes": "10926305964", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20160916", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "4193651167230247443", + "creationTimestamp": "2016-10-17T09:31:56.059-07:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20161012", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2016-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20161115" + }, + "status": "READY", + "archiveSizeBytes": "11250103711", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20161012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "6939005313781851449", + "creationTimestamp": "2016-11-17T17:39:34.584-08:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20161115", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2016-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20161213" + }, + "status": "READY", + "archiveSizeBytes": "70930461078", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20161115", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "6711881065150406414", + "creationTimestamp": "2016-12-19T14:40:33.515-08:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20161213", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2016-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "78625704246", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20161213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "3401179020506850251", + "creationTimestamp": "2017-01-18T13:24:52.086-08:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20170117", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "78648931344", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "7286478136638768347", + "creationTimestamp": "2017-02-21T14:07:48.690-08:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20170214", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "82211378976", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "5284745165905480971", + "creationTimestamp": "2017-04-13T14:55:48.753-07:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20170411", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "97338923948", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "961045092747479246", + "creationTimestamp": "2017-04-17T14:39:45.726-07:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20170417", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "97335789754", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "2593063675190922736", + "creationTimestamp": "2017-05-11T16:26:23.979-07:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20170509", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "111209016840", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "2067617307481731921", + "creationTimestamp": "2017-06-19T15:18:38.803-07:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20170615", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "127275084558", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "1224946682509507803", + "creationTimestamp": "2017-07-13T16:28:52.961-07:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20170711", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "142454360130", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "5658739716781072666", + "creationTimestamp": "2017-08-10T15:36:37.143-07:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20170808", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "148514399638", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000225", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "8816448467923044821", + "creationTimestamp": "2017-09-14T10:07:06.228-07:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20170913", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "162781759488", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000225", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "2623058464061150683", + "creationTimestamp": "2017-10-12T15:22:44.848-07:00", + "name": "sql-2016-express-windows-2012-r2-dc-v20171010", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2012 R2, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2012-r2-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "180020779008", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-exp-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2012-r2-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000225", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6143460126547857130", + "creationTimestamp": "2016-10-17T08:36:37.471-07:00", + "name": "sql-2016-express-windows-2016-dc-v20161012", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2016, x64 built on 2016-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20161115" + }, + "status": "READY", + "archiveSizeBytes": "9423146921", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20161012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "6000191807236073046", + "creationTimestamp": "2016-11-17T17:26:17.246-08:00", + "name": "sql-2016-express-windows-2016-dc-v20161115", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2016, x64 built on 2016-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20161213" + }, + "status": "READY", + "archiveSizeBytes": "61123837590", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20161115", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "4830760413991133457", + "creationTimestamp": "2016-12-19T14:32:30.471-08:00", + "name": "sql-2016-express-windows-2016-dc-v20161213", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2016, x64 built on 2016-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "69450913530", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20161213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "2791109921478959757", + "creationTimestamp": "2017-01-18T13:21:38.174-08:00", + "name": "sql-2016-express-windows-2016-dc-v20170117", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2016, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "70495623804", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "4221941343703889787", + "creationTimestamp": "2017-02-21T15:13:24.361-08:00", + "name": "sql-2016-express-windows-2016-dc-v20170214", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2016, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170227" + }, + "status": "READY", + "archiveSizeBytes": "73658558034", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "4945431367855063508", + "creationTimestamp": "2017-03-07T10:43:07.553-08:00", + "name": "sql-2016-express-windows-2016-dc-v20170227", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2016, x64 built on 2017-02-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "68427099042", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170227", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "7370498687774122068", + "creationTimestamp": "2017-04-13T13:25:31.681-07:00", + "name": "sql-2016-express-windows-2016-dc-v20170411", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2016, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "93057699469", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "3288327887213070066", + "creationTimestamp": "2017-04-17T14:48:13.440-07:00", + "name": "sql-2016-express-windows-2016-dc-v20170417", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2016, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "93079473200", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "5503897401216776883", + "creationTimestamp": "2017-05-11T17:39:56.619-07:00", + "name": "sql-2016-express-windows-2016-dc-v20170509", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2016, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "103432814624", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "3566242920176934017", + "creationTimestamp": "2017-06-19T16:46:54.685-07:00", + "name": "sql-2016-express-windows-2016-dc-v20170615", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2016, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "115867175526", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "5771223793582887394", + "creationTimestamp": "2017-07-13T15:07:09.801-07:00", + "name": "sql-2016-express-windows-2016-dc-v20170711", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2016, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "108729714030", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express" + ], + "family": "sql-exp-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000225" + ] + }, + { + "kind": "compute#image", + "id": "8104402886645081495", + "creationTimestamp": "2017-08-10T15:17:28.883-07:00", + "name": "sql-2016-express-windows-2016-dc-v20170808", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2016, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "126872323721", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-exp-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000225", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1600466784267758135", + "creationTimestamp": "2017-09-14T12:13:28.487-07:00", + "name": "sql-2016-express-windows-2016-dc-v20170913", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2016, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "133494681600", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-exp-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000225", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "6231980506338190411", + "creationTimestamp": "2017-10-12T14:12:05.136-07:00", + "name": "sql-2016-express-windows-2016-dc-v20171010", + "description": "Microsoft, SQL Server 2016 Express, on Windows Server 2016, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "132968441856", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-exp-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-express-windows-2016-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000225", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "3436737634609415289", + "creationTimestamp": "2016-08-15T10:23:34.869-07:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20160809", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2016-08-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20160916" + }, + "status": "READY", + "archiveSizeBytes": "11992329751", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20160809", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "5089670285402689942", + "creationTimestamp": "2016-09-22T16:55:37.244-07:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20160916", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2016-09-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20161012" + }, + "status": "READY", + "archiveSizeBytes": "12853240968", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20160916", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "1390501458250122251", + "creationTimestamp": "2016-10-17T09:23:00.383-07:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20161012", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2016-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20161115" + }, + "status": "READY", + "archiveSizeBytes": "13184593865", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20161012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "5759954581060840022", + "creationTimestamp": "2016-11-17T17:09:13.676-08:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20161115", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2016-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20161213" + }, + "status": "READY", + "archiveSizeBytes": "80575353462", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20161115", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "8693605449703216295", + "creationTimestamp": "2016-12-19T15:16:24.994-08:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20161213", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2016-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "89260165200", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20161213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "2466178053350517112", + "creationTimestamp": "2017-01-18T13:01:11.463-08:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20170117", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "89260380456", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "2486646188137318997", + "creationTimestamp": "2017-02-21T13:44:26.269-08:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20170214", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "91704467526", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "826943388992560643", + "creationTimestamp": "2017-04-13T13:34:52.371-07:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20170411", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "112215391316", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "4746963420192474171", + "creationTimestamp": "2017-04-17T14:59:48.090-07:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20170417", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "112209022177", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "6341358033288384648", + "creationTimestamp": "2017-05-11T16:06:15.259-07:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20170509", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "128234835648", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "2704753457912735117", + "creationTimestamp": "2017-06-19T16:16:50.256-07:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20170615", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "146446655229", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "5113080919452439200", + "creationTimestamp": "2017-07-13T14:55:27.673-07:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20170711", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "163683473020", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "4621696885086835312", + "creationTimestamp": "2017-08-10T16:30:39.230-07:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20170808", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "179707932657", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000218", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "4026587822870195991", + "creationTimestamp": "2017-09-14T12:01:12.825-07:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20170913", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "188226256896", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000218", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6032182033637333905", + "creationTimestamp": "2017-10-12T14:58:22.930-07:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20171010", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "214842479616", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000218", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6355260361337233285", + "creationTimestamp": "2017-11-16T11:05:14.173-08:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20171114", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "185418900992", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000218", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6247069005574528105", + "creationTimestamp": "2017-12-14T12:43:50.598-08:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20171212", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "181049163776", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000218", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7607432753364854117", + "creationTimestamp": "2018-01-10T10:29:30.968-08:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20180109", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "204731850240", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000218", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "1392998663863309426", + "creationTimestamp": "2018-02-16T11:01:49.460-08:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20180213", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "273064554240", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000218", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7321671631204622238", + "creationTimestamp": "2018-03-16T12:56:34.135-07:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20180313", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "275475156480", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000218", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "8277571419603347287", + "creationTimestamp": "2018-04-12T10:39:05.372-07:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20180410", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "277684838400", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000218", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "2378065261633326632", + "creationTimestamp": "2018-05-10T09:18:16.317-07:00", + "name": "sql-2016-standard-windows-2012-r2-dc-v20180508", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2012 R2 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "268696796160", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-std-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2012-r2-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000218", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "333010884260085836", + "creationTimestamp": "2016-10-17T09:38:59.820-07:00", + "name": "sql-2016-standard-windows-2016-dc-v20161012", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2016-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20161115" + }, + "status": "READY", + "archiveSizeBytes": "11337013366", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20161012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "7934510528913990283", + "creationTimestamp": "2016-11-17T17:41:56.819-08:00", + "name": "sql-2016-standard-windows-2016-dc-v20161115", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2016-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20161213" + }, + "status": "READY", + "archiveSizeBytes": "70766732592", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20161115", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "4247801573737358712", + "creationTimestamp": "2016-12-19T14:13:43.199-08:00", + "name": "sql-2016-standard-windows-2016-dc-v20161213", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2016-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "79478637150", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20161213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "5315722145090921709", + "creationTimestamp": "2017-01-18T13:11:30.667-08:00", + "name": "sql-2016-standard-windows-2016-dc-v20170117", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "81094669746", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "5061329728896596568", + "creationTimestamp": "2017-02-21T14:52:39.042-08:00", + "name": "sql-2016-standard-windows-2016-dc-v20170214", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170227" + }, + "status": "READY", + "archiveSizeBytes": "83989792236", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "6821754720933298112", + "creationTimestamp": "2017-03-07T10:51:27.197-08:00", + "name": "sql-2016-standard-windows-2016-dc-v20170227", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2017-02-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "80584123356", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170227", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "2150511142634674438", + "creationTimestamp": "2017-04-13T14:04:41.446-07:00", + "name": "sql-2016-standard-windows-2016-dc-v20170411", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "107358076630", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "3913068646063704890", + "creationTimestamp": "2017-04-17T14:38:29.192-07:00", + "name": "sql-2016-standard-windows-2016-dc-v20170417", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "107540527038", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "7996609751670145455", + "creationTimestamp": "2017-05-11T17:18:08.383-07:00", + "name": "sql-2016-standard-windows-2016-dc-v20170509", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "121343446776", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "5449448752188613434", + "creationTimestamp": "2017-06-19T16:27:18.610-07:00", + "name": "sql-2016-standard-windows-2016-dc-v20170615", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "136136470977", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "6764680240595361681", + "creationTimestamp": "2017-07-13T14:09:18.909-07:00", + "name": "sql-2016-standard-windows-2016-dc-v20170711", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "140673430230", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000218" + ] + }, + { + "kind": "compute#image", + "id": "5430938117439842431", + "creationTimestamp": "2017-08-10T14:56:32.969-07:00", + "name": "sql-2016-standard-windows-2016-dc-v20170808", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "156797237421", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000218", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "8147293374955062474", + "creationTimestamp": "2017-09-14T10:19:33.967-07:00", + "name": "sql-2016-standard-windows-2016-dc-v20170913", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "166933850112", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000218", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "7592176144807517239", + "creationTimestamp": "2017-10-12T14:47:04.653-07:00", + "name": "sql-2016-standard-windows-2016-dc-v20171010", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "168929989632", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000218", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1400658918432071724", + "creationTimestamp": "2017-11-16T10:53:55.953-08:00", + "name": "sql-2016-standard-windows-2016-dc-v20171114", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "184450546176", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000218", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "6712662259532779788", + "creationTimestamp": "2017-12-14T13:40:51.425-08:00", + "name": "sql-2016-standard-windows-2016-dc-v20171212", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "179025962752", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000218", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "8603049959769234990", + "creationTimestamp": "2018-01-10T10:51:46.018-08:00", + "name": "sql-2016-standard-windows-2016-dc-v20180109", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "204424861440", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000218", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1883824940879946162", + "creationTimestamp": "2018-02-15T16:01:33.945-08:00", + "name": "sql-2016-standard-windows-2016-dc-v20180213", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "214933486080", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000218", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "7345241359458082718", + "creationTimestamp": "2018-03-16T12:56:34.139-07:00", + "name": "sql-2016-standard-windows-2016-dc-v20180313", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "216044855040", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000218", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "3031783194168010583", + "creationTimestamp": "2018-04-12T10:39:05.248-07:00", + "name": "sql-2016-standard-windows-2016-dc-v20180410", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "217013418240", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000218", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "7352820507862486568", + "creationTimestamp": "2018-05-10T09:18:15.924-07:00", + "name": "sql-2016-standard-windows-2016-dc-v20180508", + "description": "Microsoft, SQL Server 2016 Standard, on Windows Server 2016 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "229668430080", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-standard-windows-2016-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000218", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "3928369222288949249", + "creationTimestamp": "2016-08-15T10:42:06.256-07:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20160809", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2016-08-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20160916" + }, + "status": "READY", + "archiveSizeBytes": "11751281417", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20160809", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "8861273035878551336", + "creationTimestamp": "2016-09-22T17:05:27.358-07:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20160916", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2016-09-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20161012" + }, + "status": "READY", + "archiveSizeBytes": "12207689679", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20160916", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ] + }, + { + "kind": "compute#image", + "id": "9006203546142069520", + "creationTimestamp": "2016-10-17T08:27:59.810-07:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20161012", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2016-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20161115" + }, + "status": "READY", + "archiveSizeBytes": "12541957576", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20161012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "451194545858930710", + "creationTimestamp": "2016-11-17T17:18:49.354-08:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20161115", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2016-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20161213" + }, + "status": "READY", + "archiveSizeBytes": "78666400326", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20161115", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "8260287736808064038", + "creationTimestamp": "2016-12-19T16:26:49.786-08:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20161213", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2016-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "86390259114", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20161213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "8921788137195331447", + "creationTimestamp": "2017-01-18T13:43:52.408-08:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20170117", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "86401253214", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "4408586500535550388", + "creationTimestamp": "2017-02-21T14:29:47.664-08:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20170214", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "89091450822", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "3431771677409831368", + "creationTimestamp": "2017-04-13T12:53:11.710-07:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20170411", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "108370419857", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "8321984929119897257", + "creationTimestamp": "2017-04-17T14:48:54.602-07:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20170417", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "108397297365", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "7985853757696595988", + "creationTimestamp": "2017-05-11T15:34:35.812-07:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20170509", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "123839578240", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "6627977062267613470", + "creationTimestamp": "2017-06-19T15:28:01.276-07:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20170615", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "141490375191", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "3319036886223837273", + "creationTimestamp": "2017-07-13T14:31:34.985-07:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20170711", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "158220564850", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000017", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "6755749478862511075", + "creationTimestamp": "2017-08-10T15:58:20.578-07:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20170808", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "165825998393", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "3047156278030173127", + "creationTimestamp": "2017-09-14T10:32:24.803-07:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20170913", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "181679993856", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "2474613442144786111", + "creationTimestamp": "2017-10-12T15:10:24.348-07:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20171010", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "197576841216", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "5864896368830601331", + "creationTimestamp": "2017-11-16T11:27:24.349-08:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20171114", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "178279535616", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "5124820692811858873", + "creationTimestamp": "2017-12-14T14:38:14.553-08:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20171212", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "175164381184", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7350848894545946832", + "creationTimestamp": "2018-01-10T10:06:55.242-08:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20180109", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "197528494080", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "4945009821077927131", + "creationTimestamp": "2018-02-16T13:16:36.715-08:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20180213", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "252268392960", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000224", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "5306288240788086686", + "creationTimestamp": "2018-03-16T12:56:34.090-07:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20180313", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "257308473600", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000224", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "5907772645090404183", + "creationTimestamp": "2018-04-12T10:39:05.448-07:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20180410", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "255390723840", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6993110824954482216", + "creationTimestamp": "2018-05-10T09:18:15.923-07:00", + "name": "sql-2016-web-windows-2012-r2-dc-v20180508", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2012 R2 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "258761007360", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-web-2016-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2012-r2-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000224", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7859948182965930082", + "creationTimestamp": "2016-10-17T09:04:29.895-07:00", + "name": "sql-2016-web-windows-2016-dc-v20161012", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2016-10-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20161115" + }, + "status": "READY", + "archiveSizeBytes": "10752606181", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20161012", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "3224775582554514719", + "creationTimestamp": "2016-11-17T17:40:00.428-08:00", + "name": "sql-2016-web-windows-2016-dc-v20161115", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2016-11-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20161213" + }, + "status": "READY", + "archiveSizeBytes": "68859289134", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20161115", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ] + }, + { + "kind": "compute#image", + "id": "9179089539022840598", + "creationTimestamp": "2016-12-19T14:23:53.553-08:00", + "name": "sql-2016-web-windows-2016-dc-v20161213", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2016-12-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "77179403184", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20161213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "6311393798795714969", + "creationTimestamp": "2017-01-18T13:34:46.958-08:00", + "name": "sql-2016-web-windows-2016-dc-v20170117", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2017-01-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "78219614934", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170117", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "6264432308539975849", + "creationTimestamp": "2017-02-21T16:07:34.453-08:00", + "name": "sql-2016-web-windows-2016-dc-v20170214", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2017-02-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170227" + }, + "status": "READY", + "archiveSizeBytes": "80655213930", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170214", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "8860233284371825968", + "creationTimestamp": "2017-03-07T10:28:47.896-08:00", + "name": "sql-2016-web-windows-2016-dc-v20170227", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2017-02-27", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170411" + }, + "status": "READY", + "archiveSizeBytes": "77936039760", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170227", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "1971696497162607510", + "creationTimestamp": "2017-04-13T13:54:17.860-07:00", + "name": "sql-2016-web-windows-2016-dc-v20170411", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2017-04-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170417" + }, + "status": "READY", + "archiveSizeBytes": "103447487794", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170411", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "6383947770785992038", + "creationTimestamp": "2017-04-17T14:28:41.508-07:00", + "name": "sql-2016-web-windows-2016-dc-v20170417", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2017-04-17", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170509" + }, + "status": "READY", + "archiveSizeBytes": "103655976578", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170417", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "7007038729642134455", + "creationTimestamp": "2017-05-11T16:35:52.334-07:00", + "name": "sql-2016-web-windows-2016-dc-v20170509", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2017-05-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170615" + }, + "status": "READY", + "archiveSizeBytes": "117021717488", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170509", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "4107790141029214692", + "creationTimestamp": "2017-06-19T15:58:19.040-07:00", + "name": "sql-2016-web-windows-2016-dc-v20170615", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2017-06-15", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170711" + }, + "status": "READY", + "archiveSizeBytes": "131170715730", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170615", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "8948898494769946644", + "creationTimestamp": "2017-07-13T13:58:35.188-07:00", + "name": "sql-2016-web-windows-2016-dc-v20170711", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2017-07-11", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170808" + }, + "status": "READY", + "archiveSizeBytes": "135411847900", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170711", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000213", + "1000224" + ] + }, + { + "kind": "compute#image", + "id": "6757308586350699345", + "creationTimestamp": "2017-08-10T15:27:10.054-07:00", + "name": "sql-2016-web-windows-2016-dc-v20170808", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2017-08-08", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170913" + }, + "status": "READY", + "archiveSizeBytes": "149604939979", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170808", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "5310463022065979514", + "creationTimestamp": "2017-09-14T09:30:13.643-07:00", + "name": "sql-2016-web-windows-2016-dc-v20170913", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2017-09-13", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20171010" + }, + "status": "READY", + "archiveSizeBytes": "159507486720", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20170913", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "5693433848423145748", + "creationTimestamp": "2017-10-12T14:34:51.527-07:00", + "name": "sql-2016-web-windows-2016-dc-v20171010", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2017-10-10", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "161262864384", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20171010", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "5820645024427173377", + "creationTimestamp": "2017-11-16T10:29:02.476-08:00", + "name": "sql-2016-web-windows-2016-dc-v20171114", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "176302833408", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "2319601496789838727", + "creationTimestamp": "2017-12-14T11:47:53.094-08:00", + "name": "sql-2016-web-windows-2016-dc-v20171212", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "172286030592", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "4871330314258736722", + "creationTimestamp": "2018-01-10T10:17:33.752-08:00", + "name": "sql-2016-web-windows-2016-dc-v20180109", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "198258581760", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "4208689149066846642", + "creationTimestamp": "2018-02-15T16:01:33.963-08:00", + "name": "sql-2016-web-windows-2016-dc-v20180213", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "206281082880", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "3442119052452011934", + "creationTimestamp": "2018-03-16T12:56:34.116-07:00", + "name": "sql-2016-web-windows-2016-dc-v20180313", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "206679609600", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1000224", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "2362645319723919191", + "creationTimestamp": "2018-04-12T10:39:05.358-07:00", + "name": "sql-2016-web-windows-2016-dc-v20180410", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "209616291840", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1000224", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "7871843262357163560", + "creationTimestamp": "2018-05-10T09:18:16.049-07:00", + "name": "sql-2016-web-windows-2016-dc-v20180508", + "description": "Microsoft, SQL Server 2016 Web, on Windows Server 2016 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "223902278400", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2016-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2016-web-windows-2016-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000224", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "4314427447196702890", + "creationTimestamp": "2017-10-30T10:49:58.055-07:00", + "name": "sql-2017-enterprise-windows-2016-dc-v20171018", + "description": "Microsoft, SQL Server 2017 Enterprise, on Windows Server 2016, x64 built on 2017-10-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "139899334656", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20171018", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1741222371620352982", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "2358952996473167975", + "creationTimestamp": "2017-11-16T10:52:56.792-08:00", + "name": "sql-2017-enterprise-windows-2016-dc-v20171114", + "description": "Microsoft, SQL Server 2017 Enterprise, on Windows Server 2016, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "153027506944", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1741222371620352982", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1763965425997013970", + "creationTimestamp": "2017-12-14T12:21:17.583-08:00", + "name": "sql-2017-enterprise-windows-2016-dc-v20171212", + "description": "Microsoft, SQL Server 2017 Enterprise, on Windows Server 2016, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "150502599936", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1741222371620352982", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "806319389807468273", + "creationTimestamp": "2018-01-10T10:49:02.361-08:00", + "name": "sql-2017-enterprise-windows-2016-dc-v20180109", + "description": "Microsoft, SQL Server 2017 Enterprise, on Windows Server 2016, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "169887993600", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1741222371620352982", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1340515572255531442", + "creationTimestamp": "2018-02-15T16:01:34.078-08:00", + "name": "sql-2017-enterprise-windows-2016-dc-v20180213", + "description": "Microsoft, SQL Server 2017 Enterprise, on Windows Server 2016 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "177903786240", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1741222371620352982", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "5009147572728733598", + "creationTimestamp": "2018-03-16T12:56:33.957-07:00", + "name": "sql-2017-enterprise-windows-2016-dc-v20180313", + "description": "Microsoft, SQL Server 2017 Enterprise, on Windows Server 2016 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "180692828160", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1741222371620352982", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1506032569486026586", + "creationTimestamp": "2018-04-12T10:39:02.569-07:00", + "name": "sql-2017-enterprise-windows-2016-dc-v20180410", + "description": "Microsoft, SQL Server 2017 Enterprise, on Windows Server 2016 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "184031020800", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "1741222371620352982", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "3872039502056377896", + "creationTimestamp": "2018-05-10T09:18:16.199-07:00", + "name": "sql-2017-enterprise-windows-2016-dc-v20180508", + "description": "Microsoft, SQL Server 2017 Enterprise, on Windows Server 2016 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "194997984000", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-enterprise", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-ent-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-enterprise-windows-2016-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "1741222371620352982", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "5174314787829474574", + "creationTimestamp": "2017-11-16T10:41:37.706-08:00", + "name": "sql-2017-express-windows-2012-r2-dc-v20171114", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2012 R2, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2012-r2-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "193344329984", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-exp-2017-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2012-r2-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000225", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "6440616325174747483", + "creationTimestamp": "2017-12-14T12:31:48.182-08:00", + "name": "sql-2017-express-windows-2012-r2-dc-v20171212", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2012 R2, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2012-r2-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "190355240192", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-exp-2017-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2012-r2-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000225", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "7343336794881778649", + "creationTimestamp": "2018-01-10T10:36:38.275-08:00", + "name": "sql-2017-express-windows-2012-r2-dc-v20180109", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2012 R2, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2012-r2-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "227880483840", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2016-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-exp-2017-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2012-r2-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "1000225", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "8367438327458732892", + "creationTimestamp": "2018-02-16T10:40:51.486-08:00", + "name": "sql-2017-express-windows-2012-r2-dc-v20180213", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2012 R2 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2012-r2-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "182378346240", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-exp-2017-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2012-r2-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "4315490921280396", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "5306872833081712542", + "creationTimestamp": "2018-03-16T12:56:33.978-07:00", + "name": "sql-2017-express-windows-2012-r2-dc-v20180313", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2012 R2 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2012-r2-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "186363325440", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-exp-2017-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2012-r2-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "4315490921280396", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "4945170470038284119", + "creationTimestamp": "2018-04-12T10:39:05.349-07:00", + "name": "sql-2017-express-windows-2012-r2-dc-v20180410", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2012 R2 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2012-r2-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "186044597760", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-exp-2017-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2012-r2-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "4315490921280396", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "3042392008201719336", + "creationTimestamp": "2018-05-10T09:18:15.937-07:00", + "name": "sql-2017-express-windows-2012-r2-dc-v20180508", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2012 R2 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "188915255040", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "family": "sql-exp-2017-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2012-r2-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "4315490921280396", + "1000017" + ] + }, + { + "kind": "compute#image", + "id": "4737766267436065236", + "creationTimestamp": "2017-10-30T10:19:55.410-07:00", + "name": "sql-2017-express-windows-2016-dc-v20171018", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2016, x64 built on 2017-10-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "124453521408", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-exp-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20171018", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "4315490921280396", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "5303052141854746601", + "creationTimestamp": "2017-11-16T10:29:27.049-08:00", + "name": "sql-2017-express-windows-2016-dc-v20171114", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2016, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "135568825600", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-exp-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "4315490921280396", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "5706808612758705266", + "creationTimestamp": "2017-12-14T13:18:21.193-08:00", + "name": "sql-2017-express-windows-2016-dc-v20171212", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2016, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "132289980160", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-exp-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "4315490921280396", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "6653744503762707460", + "creationTimestamp": "2018-01-10T10:26:51.513-08:00", + "name": "sql-2017-express-windows-2016-dc-v20180109", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2016, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "149928783360", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-exp-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "4315490921280396", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "3710213307662836146", + "creationTimestamp": "2018-02-15T16:01:34.078-08:00", + "name": "sql-2017-express-windows-2016-dc-v20180213", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2016 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "159304988160", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-exp-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "4315490921280396", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "2606423252507139998", + "creationTimestamp": "2018-03-16T12:56:33.964-07:00", + "name": "sql-2017-express-windows-2016-dc-v20180313", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2016 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "161739521280", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-exp-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "4315490921280396", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "6155586193575782231", + "creationTimestamp": "2018-04-12T10:39:05.242-07:00", + "name": "sql-2017-express-windows-2016-dc-v20180410", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2016 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "164382808320", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-exp-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "4315490921280396", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "5688876608897273384", + "creationTimestamp": "2018-05-10T09:18:16.004-07:00", + "name": "sql-2017-express-windows-2016-dc-v20180508", + "description": "Microsoft, SQL Server 2017 Express, on Windows Server 2016 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "175777094400", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-express", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-exp-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-express-windows-2016-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "4315490921280396", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "8111344588886301962", + "creationTimestamp": "2017-10-30T10:39:49.189-07:00", + "name": "sql-2017-standard-windows-2016-dc-v20171018", + "description": "Microsoft, SQL Server 2017 Standard, on Windows Server 2016, x64 built on 2017-10-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "141247521792", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20171018", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "6795597790302237536", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "4556782861002235228", + "creationTimestamp": "2017-11-16T11:15:00.005-08:00", + "name": "sql-2017-standard-windows-2016-dc-v20171114", + "description": "Microsoft, SQL Server 2017 Standard, on Windows Server 2016, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "154018788352", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "6795597790302237536", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "4323961041892363170", + "creationTimestamp": "2017-12-14T14:03:57.430-08:00", + "name": "sql-2017-standard-windows-2016-dc-v20171212", + "description": "Microsoft, SQL Server 2017 Standard, on Windows Server 2016, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "149603946752", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "6795597790302237536", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "379582215349855864", + "creationTimestamp": "2018-01-10T10:16:55.626-08:00", + "name": "sql-2017-standard-windows-2016-dc-v20180109", + "description": "Microsoft, SQL Server 2017 Standard, on Windows Server 2016, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "169468473600", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "6795597790302237536", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1369662371377422770", + "creationTimestamp": "2018-02-15T16:01:34.343-08:00", + "name": "sql-2017-standard-windows-2016-dc-v20180213", + "description": "Microsoft, SQL Server 2017 Standard, on Windows Server 2016 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "178353354240", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "6795597790302237536", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "7610921752851488670", + "creationTimestamp": "2018-03-16T12:56:33.960-07:00", + "name": "sql-2017-standard-windows-2016-dc-v20180313", + "description": "Microsoft, SQL Server 2017 Standard, on Windows Server 2016 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "180530031360", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "6795597790302237536", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "5593302260733060951", + "creationTimestamp": "2018-04-12T10:39:05.138-07:00", + "name": "sql-2017-standard-windows-2016-dc-v20180410", + "description": "Microsoft, SQL Server 2017 Standard, on Windows Server 2016 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "183665617920", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "6795597790302237536", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "7312943579060096552", + "creationTimestamp": "2018-05-10T09:18:15.916-07:00", + "name": "sql-2017-standard-windows-2016-dc-v20180508", + "description": "Microsoft, SQL Server 2017 Standard, on Windows Server 2016 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "195384418560", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-standard", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-std-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-standard-windows-2016-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "6795597790302237536", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "6441303756211150690", + "creationTimestamp": "2017-10-30T10:29:49.622-07:00", + "name": "sql-2017-web-windows-2016-dc-v20171018", + "description": "Microsoft, SQL Server 2017 Web, on Windows Server 2016, x64 built on 2017-10-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20171114" + }, + "status": "READY", + "archiveSizeBytes": "135933757440", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20171018", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "3398668354433905558", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "4597954765394042817", + "creationTimestamp": "2017-11-16T11:04:14.721-08:00", + "name": "sql-2017-web-windows-2016-dc-v20171114", + "description": "Microsoft, SQL Server 2017 Web, on Windows Server 2016, x64 built on 2017-11-14", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20171212" + }, + "status": "READY", + "archiveSizeBytes": "149722540032", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20171114", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "3398668354433905558", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1207200354330962206", + "creationTimestamp": "2017-12-14T11:58:41.983-08:00", + "name": "sql-2017-web-windows-2016-dc-v20171212", + "description": "Microsoft, SQL Server 2017 Web, on Windows Server 2016, x64 built on 2017-12-12", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20180109" + }, + "status": "READY", + "archiveSizeBytes": "143031735808", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20171212", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "3398668354433905558", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1695620178357512435", + "creationTimestamp": "2018-01-10T10:06:21.036-08:00", + "name": "sql-2017-web-windows-2016-dc-v20180109", + "description": "Microsoft, SQL Server 2017 Web, on Windows Server 2016, x64 built on 2018-01-09", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20180213" + }, + "status": "READY", + "archiveSizeBytes": "164610243840", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20180109", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "WINDOWS" + } + ], + "licenseCodes": [ + "3398668354433905558", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "6273681232818315697", + "creationTimestamp": "2018-02-15T16:01:34.283-08:00", + "name": "sql-2017-web-windows-2016-dc-v20180213", + "description": "Microsoft, SQL Server 2017 Web, on Windows Server 2016 Datacenter, x64 built on 20180213", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20180313" + }, + "status": "READY", + "archiveSizeBytes": "173185201920", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20180213", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3398668354433905558", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "8377634188974727070", + "creationTimestamp": "2018-03-16T12:56:34.055-07:00", + "name": "sql-2017-web-windows-2016-dc-v20180313", + "description": "Microsoft, SQL Server 2017 Web, on Windows Server 2016 Datacenter, x64 built on 20180313", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20180410" + }, + "status": "READY", + "archiveSizeBytes": "176303884800", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20180313", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + }, + { + "type": "MULTI_IP_SUBNET" + } + ], + "licenseCodes": [ + "3398668354433905558", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "6495859178079397719", + "creationTimestamp": "2018-04-12T10:39:05.254-07:00", + "name": "sql-2017-web-windows-2016-dc-v20180410", + "description": "Microsoft, SQL Server 2017 Web, on Windows Server 2016 Datacenter, x64 built on 20180410", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20180508" + }, + "status": "READY", + "archiveSizeBytes": "178107486720", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20180410", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3398668354433905558", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "1815828642150338088", + "creationTimestamp": "2018-05-10T09:18:15.935-07:00", + "name": "sql-2017-web-windows-2016-dc-v20180508", + "description": "Microsoft, SQL Server 2017 Web, on Windows Server 2016 Datacenter, x64 built on 20180508", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "189746941440", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2017-web", + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2016-dc" + ], + "family": "sql-web-2017-win-2016", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2017-web-windows-2016-dc-v20180508", + "labelFingerprint": "42WmSpB8rSM=", + "guestOsFeatures": [ + { + "type": "MULTI_IP_SUBNET" + }, + { + "type": "WINDOWS" + }, + { + "type": "VIRTIO_SCSI_MULTIQUEUE" + } + ], + "licenseCodes": [ + "3398668354433905558", + "1000213" + ] + }, + { + "kind": "compute#image", + "id": "8206853821095100410", + "creationTimestamp": "2016-05-23T15:15:49.191-07:00", + "name": "sql-server-2012-standard-windows-server-2012-r2-dc-v20160520", + "description": "Microsoft, SQL Server 2012 Standard, 2012 Standard on Windows Server 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-05-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2012-standard-windows-2012-r2-dc-v20160719" + }, + "status": "READY", + "archiveSizeBytes": "11921025218", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2012-standard" + ], + "family": "sql-std-2012-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-server-2012-standard-windows-server-2012-r2-dc-v20160520", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6217558650438187797", + "creationTimestamp": "2016-05-05T15:15:22.556-07:00", + "name": "sql-server-2014-standard-windows-server-2012-r2-dc-v20160505", + "description": "Microsoft, SQL Server 2014 Standard Windows Server 2012 R2, 2014 Standard 2012 R2 Datacenter Edition, x64 built on 2016-05-05", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-server-2014-standard-windows-server-2012-r2-dc-v20160520" + }, + "status": "READY", + "archiveSizeBytes": "11195337259", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-server-2014-standard-windows-server-2012-r2-dc-v20160505", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "755282379411438955", + "creationTimestamp": "2016-05-23T15:26:12.365-07:00", + "name": "sql-server-2014-standard-windows-server-2012-r2-dc-v20160520", + "description": "Microsoft, SQL Server 2014 Standard, 2014 Standard on Windows Server 2012 R2 Datacenter Edition, x64 Datacenter Edition built on 2016-05-20", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-2014-standard-windows-2012-r2-dc-v20160719" + }, + "status": "READY", + "archiveSizeBytes": "11315616201", + "diskSizeGb": "50", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc", + "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/licenses/sql-server-2014-standard" + ], + "family": "sql-std-2014-win-2012-r2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images/sql-server-2014-standard-windows-server-2012-r2-dc-v20160520", + "labelFingerprint": "42WmSpB8rSM=" + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/windows-sql-cloud/global/images" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:02 GMT + recorded_at: Fri, 11 May 2018 14:32:55 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/zones/us-central1-b/instances/subnet-test + uri: https://www.googleapis.com/compute/v1/projects/google-containers/global/images body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:55 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:03 GMT + - Fri, 11 May 2018 14:32:55 GMT Date: - - Fri, 02 Jun 2017 19:26:03 GMT + - Fri, 11 May 2018 14:32:55 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/0sgUWom_MrBMUMC_NZgYhxgvhRM"' + - '"ei3NBDfDDsaYE9K2FJtCSJy9U54=/ykyl54nthu3SMnL_aZhFyF7g0JU="' Vary: - Origin - X-Origin @@ -7297,67 +56707,2997 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAALVWbW/TMBD+3l8Rha8kcdpsSyshMVgHlViZ2iI+oGly3Wvm - zbEj21l50f47Z9cpW5mASeNL0/jO9/Lcc3f50YviGy5X8SiKmaqb1sILLo2l - kkH8EoXciw5JPhwMyqI4ICUZHJbkiHgp00AtV3LBa8BLdeOU+yQ/TMhh0h8u - SDHK+6MiT0tykJCjEdlek7QGp2napQSbWLzrz1dgmOaNs+jE/szSyuDLj14U - xWsuK9CN5tI6edH/XM+bN6Wen72Ke9GdU68pu+ISFt8a7+HK2saMsmyz2aSV - UpUA2nCTYqpZSDe7zbNGq2tg1mSM33KR2HYJSZ4PBnmRfVcSTNaahIG0moo8 - WWb3fJhsnSc1Z1r5YBED27pw49mn6XQyfedPnY3/Fcy2DFROmlOlN1S7cq2p - MOBxBrtR+mYiLeg1ZeAi+4JAOjB/r/u+tjMd7Yw8SwKVUEsqsmDSZK7ySR4c - bdnwbL40VMijB3Blv1zs+e5yP3euc5Lm/TIlab+TBr5Kzkg4ogzhNG+VXPOq - gzUA+wi097W3BlDJBo5+nI4vFx8v3WN6vNiJO6fjr1gPSUX0UGi7WIs0Hx6l - BxhtQWIvvnO/Fz3/58L3FTc3f649tRZJDasT1AwZduGdj2fzyXwxngbvca1W - XjAbH59cfp5NFuOugKrV7P+1nc8i25sZkZsat5zB9PGZgnJMFb6iiGxfl0q5 - 6WF1C6GUrVUnIMDCg2OBRqWBX8V9alYrWHIqEyZUu+qY3xnthGVyjcTg4At3 - 0cXbNSCmM387n8T3SlmDpStqaTcS9wu5k798bGDmbwb603V5esR2A9OAdvAd - M6ZaaR+yBGrKhWfZcNgng6JfHhRFEly9RtxBqAZ0WgUjdGvEIdJRgqHCv0GI - ZbhCWG6NVZpWkOJqWV0qKb4F0v/1rlBVhfmmG80t/OulWkmODp98L2TMFNJT - iSfeSmsqMcUauR3v96oBsf7A5fPMwMfaqFvvv7USFgsnQCsQi45dSr5Xxp5R - R0npvwkwqrPJu9lxaHrfPDV+A7CZ+wDQ9zsrbjRAjdt8KaDbSoF0rGnPBbVr - pWtn0a0cEb2nZgPCYxkLugRx+od1H7atts6v5szCbvP17no/AQ+yxkDXCAAA + encoding: UTF-8 + string: | + { + "kind": "compute#imageList", + "id": "projects/google-containers/global/images", + "items": [ + { + "kind": "compute#image", + "id": "2880135788868924116", + "creationTimestamp": "2016-02-18T14:56:59.833-08:00", + "name": "container-v1-2-v20160218", + "description": "Google container VM image (Kubernetes version: 1.1.3, Docker version: 1.9.1)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20160321" + }, + "status": "READY", + "archiveSizeBytes": "616760269", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-v1-2-v20160218", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4782476473297939898", + "creationTimestamp": "2016-05-17T14:55:33.458-07:00", + "name": "container-v1-3-v20160517", + "description": "Google container VM image (Kubernetes version: v1.3.0-alpha.3.1007+f3ab7b182f3af5, Docker version: 1.11.1)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-v1-3-v20160604" + }, + "status": "READY", + "archiveSizeBytes": "642474847", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-v1-3-v20160517", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3226202817425191605", + "creationTimestamp": "2016-06-04T19:20:10.397-07:00", + "name": "container-v1-3-v20160604", + "description": "Google container VM image (Kubernetes version: v1.3.0-alpha.3.1007+f3ab7b182f3af5, Docker version: 1.11.2)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-55-8872-71-0" + }, + "status": "READY", + "archiveSizeBytes": "586375512", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-v1-3-v20160604", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "12928746743513706688", + "creationTimestamp": "2014-05-21T15:30:01.045-07:00", + "name": "container-vm-v20140522", + "description": "Google container VM image, GlueCon 2014 release", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140522" + }, + "status": "READY", + "archiveSizeBytes": "396961200", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140522", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "17637324906060386740", + "creationTimestamp": "2014-06-24T17:59:38.240-07:00", + "name": "container-vm-v20140624", + "description": "Google container VM image, Google I/O 2014 release", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140624" + }, + "status": "READY", + "archiveSizeBytes": "391233093", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140624", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "17658123443453052547", + "creationTimestamp": "2014-07-15T17:29:02.737-07:00", + "name": "container-vm-v20140710", + "description": "Google container VM image", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140710" + }, + "status": "READY", + "archiveSizeBytes": "428253862", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140710", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7675862044791361451", + "creationTimestamp": "2014-08-01T09:41:06.107-07:00", + "name": "container-vm-v20140731", + "description": "Google container VM image", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140731" + }, + "status": "READY", + "archiveSizeBytes": "403951165", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140731", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5337588031210316441", + "creationTimestamp": "2014-08-26T16:19:17.533-07:00", + "name": "container-vm-v20140826", + "description": "Google container VM image", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140826" + }, + "status": "READY", + "archiveSizeBytes": "420545090", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140826", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7326458020538492469", + "creationTimestamp": "2014-09-25T14:23:38.865-07:00", + "name": "container-vm-v20140925", + "description": "Google container VM image", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140925" + }, + "status": "READY", + "archiveSizeBytes": "432272421", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140925", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "17245742661521590081", + "creationTimestamp": "2014-09-29T13:49:23.330-07:00", + "name": "container-vm-v20140929", + "description": "Google container VM image", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140929" + }, + "status": "READY", + "archiveSizeBytes": "422162733", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140929", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "857872787891330870", + "creationTimestamp": "2014-10-22T13:40:01.068-07:00", + "name": "container-vm-v20141016", + "description": "Google container VM image", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20141016" + }, + "status": "READY", + "archiveSizeBytes": "432768815", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20141016", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8037634834499556312", + "creationTimestamp": "2014-12-09T15:57:34.413-08:00", + "name": "container-vm-v20141208", + "description": "Google container VM image", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20141208" + }, + "status": "READY", + "archiveSizeBytes": "413371239", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20141208", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6169659893143925594", + "creationTimestamp": "2015-01-12T17:07:09.273-08:00", + "name": "container-vm-v20150112", + "description": "Google container VM image", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150112" + }, + "status": "READY", + "archiveSizeBytes": "413799053", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150112", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5238146110831820327", + "creationTimestamp": "2015-01-30T14:24:38.586-08:00", + "name": "container-vm-v20150129", + "description": "Google container VM image, (Kubernetes version: 0.8.4 Docker version: 1.4.1)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150611" + }, + "status": "READY", + "archiveSizeBytes": "437743758", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150129", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1465139503060771373", + "creationTimestamp": "2015-03-06T08:58:42.934-08:00", + "name": "container-vm-v20150305", + "description": "Google container VM image, (Kubernetes version: 0.11.0 Docker version: 1.5.0)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150611" + }, + "status": "READY", + "archiveSizeBytes": "442112216", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150305", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1179719865198825622", + "creationTimestamp": "2015-03-17T11:12:09.818-07:00", + "name": "container-vm-v20150317", + "description": "Google container VM image, Google container VM image, (Kubernetes version: 0.12.2 Docker version: 1.5.0", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150611" + }, + "status": "READY", + "archiveSizeBytes": "460646051", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150317", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6213014459114646277", + "creationTimestamp": "2015-05-05T16:44:42.379-07:00", + "name": "container-vm-v20150505", + "description": "Google container VM image, (Kubernetes version: 0.16.2, Docker version: 1.6.0)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150611" + }, + "status": "READY", + "archiveSizeBytes": "489045979", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150505", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1036837023502543982", + "creationTimestamp": "2015-06-11T15:58:09.537-07:00", + "name": "container-vm-v20150611", + "description": "Google container VM image, (Kubernetes version: 0.19.0, Docker version: 1.6.2)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150715" + }, + "status": "READY", + "archiveSizeBytes": "519417660", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150611", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2444006981267776529", + "creationTimestamp": "2015-07-16T09:25:34.958-07:00", + "name": "container-vm-v20150715", + "description": "Google container VM image, (Kubernetes version: 1.0.0, Docker version: 1.6.2)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150806" + }, + "status": "READY", + "archiveSizeBytes": "581984009", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150715", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8122163822026713480", + "creationTimestamp": "2015-08-06T14:53:43.196-07:00", + "name": "container-vm-v20150806", + "description": "Google container VM image (Kubernetes version: 1.0.2, Docker version: 1.6.2)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20151103" + }, + "status": "READY", + "archiveSizeBytes": "571430128", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20150806", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8328522427727674567", + "creationTimestamp": "2015-11-03T15:24:24.391-08:00", + "name": "container-vm-v20151103", + "description": "Google container VM image, (Kubernetes version: 1.1.1-beta.1, Docker version: 1.8.3)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20151215" + }, + "status": "READY", + "archiveSizeBytes": "581595159", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20151103", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "154720199065239104", + "creationTimestamp": "2015-12-16T11:51:11.054-08:00", + "name": "container-vm-v20151215", + "description": "Google container VM image (Kubernetes version: 1.1.3, Docker version: 1.8.3)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20160127" + }, + "status": "READY", + "archiveSizeBytes": "542276896", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20151215", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4171779183737625734", + "creationTimestamp": "2016-01-21T14:57:45.402-08:00", + "name": "container-vm-v20160121", + "description": "Google container VM image (Kubernetes version: 1.1.3, Docker version: 1.8.3)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20151215" + }, + "status": "READY", + "archiveSizeBytes": "598095407", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20160121", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "522188242163156722", + "creationTimestamp": "2016-01-27T09:02:21.879-08:00", + "name": "container-vm-v20160127", + "description": "Google container VM image (Kubernetes version: 1.1.3, Docker version: 1.8.3)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20160217" + }, + "status": "READY", + "archiveSizeBytes": "562789177", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20160127", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6386824393886613670", + "creationTimestamp": "2016-02-17T15:12:09.703-08:00", + "name": "container-vm-v20160217", + "description": "Google container VM image (Kubernetes version: 1.1.3, Docker version: 1.8.3)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20160321" + }, + "status": "READY", + "archiveSizeBytes": "598828900", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20160217", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4989076292979470119", + "creationTimestamp": "2016-03-21T17:28:56.837-07:00", + "name": "container-vm-v20160321", + "description": "Google container VM image (Kubernetes version: 1.2.0, Docker version: 1.9.1)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20160321-2" + }, + "status": "READY", + "archiveSizeBytes": "578221458", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20160321", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5916922153885237602", + "creationTimestamp": "2016-06-06T11:23:09.070-07:00", + "name": "container-vm-v20160321-2", + "description": "Google container VM image (Kubernetes version: 1.2.0, Docker version: 1.9.1) (republish into image family)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-55-8872-71-0" + }, + "status": "READY", + "archiveSizeBytes": "578221556", + "diskSizeGb": "10", + "family": "container-vm", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20160321-2", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4551973446854090246", + "creationTimestamp": "2016-10-27T08:44:41.322-07:00", + "name": "container-vm-v20161025", + "description": "Google container VM image (Kubernetes version: v1.4.3, Docker version: 1.11.2)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "675919137", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20161025", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1248962593425960198", + "creationTimestamp": "2016-12-08T18:16:09.566-08:00", + "name": "container-vm-v20161208", + "description": "Google container VM image (Kubernetes version: v1.4.6, Docker version: 1.11.2)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20170117" + }, + "status": "READY", + "archiveSizeBytes": "657655062", + "diskSizeGb": "10", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20161208", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4551268015656820866", + "creationTimestamp": "2017-01-18T13:30:21.461-08:00", + "name": "container-vm-v20170117", + "description": "Google container VM image (Kubernetes version: v1.4.6, Docker version: 1.11.2)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20170201" + }, + "status": "READY", + "archiveSizeBytes": "703493469", + "diskSizeGb": "10", + "family": "container-vm", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20170117", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5705270950069522300", + "creationTimestamp": "2017-02-01T15:38:59.575-08:00", + "name": "container-vm-v20170201", + "description": "Google container VM image (Kubernetes version: v1.4.6, Docker version: 1.11.2+)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20170627" + }, + "status": "READY", + "archiveSizeBytes": "664209717", + "diskSizeGb": "10", + "family": "container-vm", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20170201", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "445328784461012577", + "creationTimestamp": "2017-02-14T16:27:58.708-08:00", + "name": "container-vm-v20170214", + "description": "Google container VM image (Kubernetes version: v1.4.6, Docker version: 1.11.2+)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "623710741", + "diskSizeGb": "10", + "family": "container-vm", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20170214", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "408860681039737068", + "creationTimestamp": "2017-06-27T14:28:35.326-07:00", + "name": "container-vm-v20170627", + "description": "Google container VM image (Kubernetes version: N/A, Docker version: 1.11.2+)", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20170214" + }, + "status": "READY", + "archiveSizeBytes": "592432939", + "diskSizeGb": "10", + "family": "container-vm", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20170627", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "9117113367143616379", + "creationTimestamp": "2016-04-28T08:51:48.684-07:00", + "name": "gci-beta-51-8172-12-0", + "description": "Google Container-VM Image\nBuild: 8172.12.0\nKubernetes version: Kubernetes v1.2.3,\nDocker version: Docker version 1.9.1, build a34a1d5", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-51-8172-23-0" + }, + "status": "READY", + "archiveSizeBytes": "145706655", + "diskSizeGb": "10", + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-51-8172-12-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4855582623470649671", + "creationTimestamp": "2016-05-04T20:36:08.953-07:00", + "name": "gci-beta-51-8172-23-0", + "description": "Google Container-VM Image Build: 51-8172.23.0, Kernel: ChromiumOS-3.18, Kubernetes: 1.2.3, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-51-8172-26-0" + }, + "status": "READY", + "archiveSizeBytes": "145617644", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-51-8172-23-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1732966675715505874", + "creationTimestamp": "2016-05-09T14:25:17.377-07:00", + "name": "gci-beta-51-8172-26-0", + "description": "Google Container-VM Image Build: 51-8172.26.0, Kernel: ChromiumOS-3.18, Kubernetes: 1.2.4, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-51-8172-38-0" + }, + "status": "READY", + "archiveSizeBytes": "145667577", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-51-8172-26-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5623869470051222226", + "creationTimestamp": "2016-05-18T16:35:25.312-07:00", + "name": "gci-beta-51-8172-38-0", + "description": "Google Container-VM Image Build: 51-8172.38.0, Kernel: ChromiumOS-3.18, Kubernetes: 1.2.4, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-51-8172-47-0" + }, + "status": "READY", + "archiveSizeBytes": "145642734", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-51-8172-38-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6566846041159088484", + "creationTimestamp": "2016-06-09T17:19:23.942-07:00", + "name": "gci-beta-51-8172-47-0", + "description": "Google Container-VM Image Build: 51-8172.47.0, Kernel: ChromiumOS-3.18, Kubernetes: 1.2.4, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-52-8350-23-0" + }, + "status": "READY", + "archiveSizeBytes": "145665251", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-51-8172-47-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8660020540665734164", + "creationTimestamp": "2016-06-09T18:42:19.996-07:00", + "name": "gci-beta-52-8350-23-0", + "description": "Google Container-VM Image Build: 52-8350.23.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.2.4, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-52-8350-39-0" + }, + "status": "READY", + "archiveSizeBytes": "157535218", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-52-8350-23-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1404127735969867676", + "creationTimestamp": "2016-06-23T14:49:39.745-07:00", + "name": "gci-beta-52-8350-39-0", + "description": "Google Container-VM Image Build: 52-8350.39.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.2.4, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-52-8350-45-0" + }, + "status": "READY", + "archiveSizeBytes": "158008814", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-52-8350-39-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1342411740282846510", + "creationTimestamp": "2016-06-28T11:36:49.580-07:00", + "name": "gci-beta-52-8350-45-0", + "description": "Google Container-VM Image Build: 52-8350.45.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.2.5, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-52-8350-60-0" + }, + "status": "READY", + "archiveSizeBytes": "157961199", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-52-8350-45-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1486465677819424395", + "creationTimestamp": "2016-07-21T11:11:48.432-07:00", + "name": "gci-beta-52-8350-60-0", + "description": "Google Container-VM Image Build: 52-8350.60.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.2.6, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-53-8530-40-0" + }, + "status": "READY", + "archiveSizeBytes": "157536996", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-52-8350-60-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8796321598371839686", + "creationTimestamp": "2016-08-02T13:18:49.436-07:00", + "name": "gci-beta-53-8530-40-0", + "description": "Google Container-VM Image Build: 53-8530.40.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.3, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-53-8530-42-0" + }, + "status": "READY", + "archiveSizeBytes": "186022199", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-53-8530-40-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4954041918340202022", + "creationTimestamp": "2016-08-03T12:06:49.490-07:00", + "name": "gci-beta-53-8530-42-0", + "description": "Google Container-VM Image Build: 53-8530.42.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.4, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-53-8530-57-0" + }, + "status": "READY", + "archiveSizeBytes": "186020654", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-53-8530-42-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7597997668062700552", + "creationTimestamp": "2016-08-15T12:41:27.967-07:00", + "name": "gci-beta-53-8530-57-0", + "description": "Google Container-VM Image Build: 53-8530.57.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.5, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-53-8530-71-0" + }, + "status": "READY", + "archiveSizeBytes": "186123080", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-53-8530-57-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7350370851875313190", + "creationTimestamp": "2016-08-29T09:54:33.815-07:00", + "name": "gci-beta-53-8530-71-0", + "description": "Google Container-VM Image Build: 53-8530.71.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.6, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-54-8743-25-0" + }, + "status": "READY", + "archiveSizeBytes": "186172216", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-53-8530-71-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "999300796001943376", + "creationTimestamp": "2016-09-13T11:13:19.695-07:00", + "name": "gci-beta-54-8743-25-0", + "description": "Google Container-VM Image Build: 54-8743.25.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.6, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-54-8743-42-0" + }, + "status": "READY", + "archiveSizeBytes": "184306217", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-54-8743-25-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3148003274113110789", + "creationTimestamp": "2016-09-27T15:08:42.803-07:00", + "name": "gci-beta-54-8743-42-0", + "description": "Container-VM Image Build: 54-8743.42.0, Kernel: ChromiumOS-4.4.4, Kubernetes: 1.3.7, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-54-8743-54-0" + }, + "status": "READY", + "archiveSizeBytes": "184335664", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-54-8743-42-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "47105816332748759", + "creationTimestamp": "2016-10-04T11:47:20.273-07:00", + "name": "gci-beta-54-8743-54-0", + "description": "Container-VM Image Build: 54-8743.54.0, Kernel: ChromiumOS-4.4.4, Kubernetes: 1.3.8, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-54-8743-69-0" + }, + "status": "READY", + "archiveSizeBytes": "184449067", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-54-8743-54-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3161973673106735331", + "creationTimestamp": "2016-10-19T11:40:12.893-07:00", + "name": "gci-beta-54-8743-69-0", + "description": "Container-VM Image Build: 54-8743.69.0, Kernel: ChromiumOS-4.4.4, Kubernetes: 1.3.8, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-55-8872-26-0" + }, + "status": "READY", + "archiveSizeBytes": "184320569", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-54-8743-69-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3515369324594103756", + "creationTimestamp": "2016-10-26T16:24:19.215-07:00", + "name": "gci-beta-55-8872-26-0", + "description": "Google, Container-VM Image, beta 55-8872.26.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-55-8872-40-0" + }, + "status": "READY", + "archiveSizeBytes": "184934956", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-55-8872-26-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8640657213132683313", + "creationTimestamp": "2016-11-04T15:08:30.947-07:00", + "name": "gci-beta-55-8872-40-0", + "description": "Google, Container-VM Image, beta 55-8872.40.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.5 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-55-8872-47-0" + }, + "status": "READY", + "archiveSizeBytes": "184488238", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-55-8872-40-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7933900342910754997", + "creationTimestamp": "2016-11-11T11:39:06.469-08:00", + "name": "gci-beta-55-8872-47-0", + "description": "Google, Container-VM Image, beta 55-8872.47.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.5 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-55-8872-55-0" + }, + "status": "READY", + "archiveSizeBytes": "184537653", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-55-8872-47-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4224576770005001424", + "creationTimestamp": "2016-11-17T17:32:47.523-08:00", + "name": "gci-beta-55-8872-55-0", + "description": "Google, Container-Optimized OS, beta 55-8872.55.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-55-8872-70-0" + }, + "status": "READY", + "archiveSizeBytes": "184470070", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-55-8872-55-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1638534037186711498", + "creationTimestamp": "2016-12-09T14:33:09.388-08:00", + "name": "gci-beta-55-8872-70-0", + "description": "Google, Container-Optimized OS, beta 55-8872.70.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-55-8872-71-0" + }, + "status": "READY", + "archiveSizeBytes": "184433706", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-55-8872-70-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5927323658387983138", + "creationTimestamp": "2016-12-14T13:12:45.149-08:00", + "name": "gci-beta-55-8872-71-0", + "description": "Google, Container-Optimized OS, beta 55-8872.71.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-56-9000-21-0" + }, + "status": "READY", + "archiveSizeBytes": "184816965", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-55-8872-71-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "2629784022061895835", + "creationTimestamp": "2016-12-15T11:26:45.006-08:00", + "name": "gci-beta-56-9000-21-0", + "description": "Google, Container-Optimized OS, beta 56-9000.21.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-56-9000-36-0" + }, + "status": "READY", + "archiveSizeBytes": "184054849", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-56-9000-21-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "2773511477669237085", + "creationTimestamp": "2016-12-22T11:55:30.197-08:00", + "name": "gci-beta-56-9000-36-0", + "description": "Google, Container-Optimized OS, beta 56-9000.36.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-56-9000-66-0" + }, + "status": "READY", + "archiveSizeBytes": "183926058", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-56-9000-36-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "2231186124704973311", + "creationTimestamp": "2017-01-18T11:16:32.902-08:00", + "name": "gci-beta-56-9000-66-0", + "description": "Google, Container-Optimized OS, beta 56-9000.66.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-56-9000-76-0" + }, + "status": "READY", + "archiveSizeBytes": "184014137", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-56-9000-66-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "2692406985980586448", + "creationTimestamp": "2017-01-26T16:41:35.291-08:00", + "name": "gci-beta-56-9000-76-0", + "description": "Google, Container-Optimized OS, beta 56-9000.76.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.8 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-56-9000-80-0" + }, + "status": "READY", + "archiveSizeBytes": "184496972", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-56-9000-76-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "5014429931568663808", + "creationTimestamp": "2017-01-31T17:03:43.163-08:00", + "name": "gci-beta-56-9000-80-0", + "description": "Google, Container-Optimized OS, beta 56-9000.80.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.8 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-56-9000-84-0" + }, + "status": "READY", + "archiveSizeBytes": "184078654", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-56-9000-80-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "3288998151217118622", + "creationTimestamp": "2017-02-08T17:18:41.502-08:00", + "name": "gci-beta-56-9000-84-0", + "description": "Google, Container-Optimized OS, beta 56-9000.84.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.8 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-57-9202-30-0" + }, + "status": "READY", + "archiveSizeBytes": "184113973", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-56-9000-84-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "1805775678516991884", + "creationTimestamp": "2017-02-16T14:36:19.111-08:00", + "name": "gci-beta-57-9202-30-0", + "description": "Google, Container-Optimized OS, beta 57-9202.30.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.2 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-57-9202-38-0" + }, + "status": "READY", + "archiveSizeBytes": "178665781", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-57-9202-30-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "4272834635989107801", + "creationTimestamp": "2017-02-24T10:25:58.263-08:00", + "name": "gci-beta-57-9202-38-0", + "description": "Google, Container-Optimized OS, beta 57-9202.38.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.2 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-64-10176-62-0" + }, + "status": "READY", + "archiveSizeBytes": "178612270", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-57-9202-38-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "5071893540271346451", + "creationTimestamp": "2017-03-24T12:05:33.009-07:00", + "name": "gci-beta-58-9334-19-0", + "description": "Google, Container-Optimized OS, beta 58-9334.19.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-57-9202-38-0" + }, + "status": "READY", + "archiveSizeBytes": "178684735", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-58-9334-19-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "2652639123580072051", + "creationTimestamp": "2017-04-06T11:53:16.293-07:00", + "name": "gci-beta-58-9334-35-0", + "description": "Google, Container-Optimized OS, beta 58-9334.35.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-57-9202-38-0" + }, + "status": "READY", + "archiveSizeBytes": "178594609", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-beta", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-beta-58-9334-35-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "7991531902061219220", + "creationTimestamp": "2016-04-28T08:59:55.900-07:00", + "name": "gci-dev-52-8244-0-0", + "description": "Google Container-VM Image\nBuild: 8244.0.0\nKubernetes version: Kubernetes v1.2.3,\nDocker version: Docker version 1.9.1, build a34a1d5", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-52-8300-0-0" + }, + "status": "READY", + "archiveSizeBytes": "146279570", + "diskSizeGb": "10", + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-52-8244-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3023015490967343516", + "creationTimestamp": "2016-05-09T17:46:43.323-07:00", + "name": "gci-dev-52-8300-0-0", + "description": "Google Container-VM Image Build: 52-8300.0.0, Kernel: ChromiumOS-3.18, Kubernetes: 1.2.4, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-52-8352-0-0" + }, + "status": "READY", + "archiveSizeBytes": "156828631", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-52-8300-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1637606590589617415", + "creationTimestamp": "2016-05-23T14:53:44.294-07:00", + "name": "gci-dev-52-8352-0-0", + "description": "Google Container-VM Image Build: 52-8352.0.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.2.4, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8437-0-0" + }, + "status": "READY", + "archiveSizeBytes": "157601773", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-52-8352-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "439169964617580765", + "creationTimestamp": "2016-08-02T13:10:26.221-07:00", + "name": "gci-dev-53-8377-0-0", + "description": "Google Container-VM Image Build: 53-8377.0.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.2.4, Docker: 1.11.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8377-0-0" + }, + "status": "READY", + "archiveSizeBytes": "157667085", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8377-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8278886126366133424", + "creationTimestamp": "2016-06-10T14:34:23.776-07:00", + "name": "gci-dev-53-8437-0-0", + "description": "Google Container-VM Image Build: 53-8437.0.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.2.4, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8458-0-0" + }, + "status": "READY", + "archiveSizeBytes": "185413641", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8437-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4667133206717038297", + "creationTimestamp": "2016-06-15T13:53:10.335-07:00", + "name": "gci-dev-53-8458-0-0", + "description": "Google Container-VM Image Build: 53-8458.0.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.2.4, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8467-0-0" + }, + "status": "READY", + "archiveSizeBytes": "183002616", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8458-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5272345999108026578", + "creationTimestamp": "2016-06-17T16:56:45.579-07:00", + "name": "gci-dev-53-8467-0-0", + "description": "Google Container-VM Image Build: 53-8467.0.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.0, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8490-0-0" + }, + "status": "READY", + "archiveSizeBytes": "183257076", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8467-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5918849009354646542", + "creationTimestamp": "2016-06-23T10:22:41.914-07:00", + "name": "gci-dev-53-8490-0-0", + "description": "Google Container-VM Image Build: 53-8490.0.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.0, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8530-6-0" + }, + "status": "READY", + "archiveSizeBytes": "183377396", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8490-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2798812833694201705", + "creationTimestamp": "2016-07-14T14:52:06.739-07:00", + "name": "gci-dev-53-8530-14-0", + "description": "Google Container-VM Image Build: 53-8530.14.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.0, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8530-20-0" + }, + "status": "READY", + "archiveSizeBytes": "186036475", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8530-14-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7969626550937104739", + "creationTimestamp": "2016-07-18T10:19:08.145-07:00", + "name": "gci-dev-53-8530-20-0", + "description": "Google Container-VM Image Build: 53-8530.20.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.2, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8530-29-0" + }, + "status": "READY", + "archiveSizeBytes": "186062082", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8530-20-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8487377363753756061", + "creationTimestamp": "2016-07-25T11:33:22.657-07:00", + "name": "gci-dev-53-8530-29-0", + "description": "Google Container-VM Image Build: 53-8530.29.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.3, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-54-8666-0-0" + }, + "status": "READY", + "archiveSizeBytes": "185986550", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8530-29-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6629811563091150456", + "creationTimestamp": "2016-07-07T17:49:27.203-07:00", + "name": "gci-dev-53-8530-6-0", + "description": "Google Container-VM Image Build: 53-8530.6.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.0, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8530-14-0" + }, + "status": "READY", + "archiveSizeBytes": "186012661", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-53-8530-6-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7409979534739477739", + "creationTimestamp": "2016-08-03T10:29:40.321-07:00", + "name": "gci-dev-54-8666-0-0", + "description": "Google Container-VM Image Build: 54-8666.0.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.4, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-54-8711-0-0" + }, + "status": "READY", + "archiveSizeBytes": "184376119", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-54-8666-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1189259812154558621", + "creationTimestamp": "2016-08-16T13:24:18.356-07:00", + "name": "gci-dev-54-8711-0-0", + "description": "Google Container-VM Image Build: 54-8711.0.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.5, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-54-8743-3-0" + }, + "status": "READY", + "archiveSizeBytes": "184281899", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-54-8711-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1980035970789659109", + "creationTimestamp": "2016-08-29T10:21:14.756-07:00", + "name": "gci-dev-54-8743-3-0", + "description": "Google Container-VM Image Build: 54-8743.3.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.6, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-55-8801-0-0" + }, + "status": "READY", + "archiveSizeBytes": "184330542", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-54-8743-3-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "564006345883544246", + "creationTimestamp": "2016-09-14T15:51:05.439-07:00", + "name": "gci-dev-55-8801-0-0", + "description": "Google Container-VM Image Build: 55-8801.0.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.7, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-55-8820-0-0" + }, + "status": "READY", + "archiveSizeBytes": "182177843", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-55-8801-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "40934163075571638", + "creationTimestamp": "2016-09-20T13:51:37.698-07:00", + "name": "gci-dev-55-8820-0-0", + "description": "Container-VM Image Build: 55-8820.0.0, Kernel: ChromiumOS-4.4.4, Kubernetes: 1.3.7, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-55-8866-0-0" + }, + "status": "READY", + "archiveSizeBytes": "182417196", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-55-8820-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "766934320733014998", + "creationTimestamp": "2016-10-05T14:48:41.984-07:00", + "name": "gci-dev-55-8866-0-0", + "description": "Container-VM Image Build: 55-8866.0.0, Kernel: ChromiumOS-4.4.4, Kubernetes: 1.4.0, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-55-8872-16-0" + }, + "status": "READY", + "archiveSizeBytes": "184858398", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-55-8866-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2731172239816394768", + "creationTimestamp": "2016-10-19T11:10:07.732-07:00", + "name": "gci-dev-55-8872-16-0", + "description": "Container-VM Image Build: 55-8872.16.0, Kernel: ChromiumOS-4.4.4, Kubernetes: 1.4.1, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-55-8872-18-0" + }, + "status": "READY", + "archiveSizeBytes": "184902439", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-55-8872-16-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8105167923391529979", + "creationTimestamp": "2016-10-20T14:54:28.303-07:00", + "name": "gci-dev-55-8872-18-0", + "description": "Google, Container-VM Image, dev 55-8872.18.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.1 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-56-8938-0-0" + }, + "status": "READY", + "archiveSizeBytes": "184905769", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-55-8872-18-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "1575235277327157036", + "creationTimestamp": "2016-10-27T15:03:47.984-07:00", + "name": "gci-dev-56-8938-0-0", + "description": "Google, Container-VM Image, dev 56-8938.0.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-56-8956-0-0" + }, + "status": "READY", + "archiveSizeBytes": "184401200", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-56-8938-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3097187858133684941", + "creationTimestamp": "2016-11-03T14:29:06.784-07:00", + "name": "gci-dev-56-8956-0-0", + "description": "Google, Container-VM Image, dev 56-8956.0.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.5 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-56-8977-0-0" + }, + "status": "READY", + "archiveSizeBytes": "183918387", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-56-8956-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4477678406779580562", + "creationTimestamp": "2016-11-10T16:19:09.326-08:00", + "name": "gci-dev-56-8977-0-0", + "description": "Google, Container-VM Image, dev 56-8977.0.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.5 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-56-9000-21-0" + }, + "status": "READY", + "archiveSizeBytes": "183996716", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-56-8977-0-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "2771628710034693292", + "creationTimestamp": "2016-12-08T14:44:19.830-08:00", + "name": "gci-dev-56-9000-21-0", + "description": "Google, Container-Optimized OS, dev 56-9000.21.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-57-9102-0-0" + }, + "status": "READY", + "archiveSizeBytes": "184054843", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-56-9000-21-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4295225511698090177", + "creationTimestamp": "2016-12-19T16:07:10.267-08:00", + "name": "gci-dev-57-9102-0-0", + "description": "Google, Container-Optimized OS, dev 57-9102.0.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-57-9196-0-0" + }, + "status": "READY", + "archiveSizeBytes": "183993129", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-57-9102-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "3353748996577429621", + "creationTimestamp": "2017-01-18T10:40:26.174-08:00", + "name": "gci-dev-57-9196-0-0", + "description": "Google, Container-Optimized OS, dev 57-9196.0.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-57-9202-20-0" + }, + "status": "READY", + "archiveSizeBytes": "184435509", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-57-9196-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "5449287454663180727", + "creationTimestamp": "2017-02-09T11:13:28.342-08:00", + "name": "gci-dev-57-9202-20-0", + "description": "Google, Container-Optimized OS, dev 57-9202.20.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.2 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-57-9202-26-0" + }, + "status": "READY", + "archiveSizeBytes": "178616354", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-57-9202-20-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "5382756169273044755", + "creationTimestamp": "2017-02-13T16:40:28.335-08:00", + "name": "gci-dev-57-9202-26-0", + "description": "Google, Container-Optimized OS, dev 57-9202.26.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.2 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-64-10176-62-0" + }, + "status": "READY", + "archiveSizeBytes": "178589473", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-57-9202-26-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "2391119982268789954", + "creationTimestamp": "2017-03-24T14:05:49.720-07:00", + "name": "gci-dev-59-9394-0-0", + "description": "Google, Container-Optimized OS, dev 59-9394.0.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-57-9202-26-0" + }, + "status": "READY", + "archiveSizeBytes": "180011056", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-dev", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-dev-59-9394-0-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "1042076531378065531", + "creationTimestamp": "2016-04-28T08:39:00.994-07:00", + "name": "gci-stable-50-7978-62-0", + "description": "Google Container-VM Image\nBuild: 7978.62.0\nKubernetes version: Kubernetes v1.1.8,\nDocker version: Docker version 1.9.1, build a34a1d5", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-50-7978-71-0" + }, + "status": "READY", + "archiveSizeBytes": "144264619", + "diskSizeGb": "10", + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-50-7978-62-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4181488507090781728", + "creationTimestamp": "2016-05-05T18:52:15.455-07:00", + "name": "gci-stable-50-7978-71-0", + "description": "Google Container-VM Image Build: 50-7978.71.0, Kernel: ChromiumOS-3.18, Kubernetes: 1.1.8, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-51-8172-47-0" + }, + "status": "READY", + "archiveSizeBytes": "142884339", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-50-7978-71-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8072476410506620993", + "creationTimestamp": "2016-06-09T17:49:50.164-07:00", + "name": "gci-stable-51-8172-47-0", + "description": "Google Container-VM Image Build: 51-8172.47.0, Kernel: ChromiumOS-3.18, Kubernetes: 1.2.4, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-52-8350-60-0" + }, + "status": "READY", + "archiveSizeBytes": "145664507", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-51-8172-47-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8182171438601991490", + "creationTimestamp": "2016-07-28T11:15:09.164-07:00", + "name": "gci-stable-52-8350-60-0", + "description": "Google Container-VM Image Build: 52-8350.60.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.2.6, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-52-8350-75-0" + }, + "status": "READY", + "archiveSizeBytes": "157536554", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-52-8350-60-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7866818223714504627", + "creationTimestamp": "2016-08-25T10:56:44.031-07:00", + "name": "gci-stable-52-8350-75-0", + "description": "Google Container-VM Image Build: 52-8350.75.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.2.6, Docker: 1.9.1", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-52-8350-75-0" + }, + "status": "READY", + "archiveSizeBytes": "157507120", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-52-8350-75-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "4821677773630485001", + "creationTimestamp": "2016-10-20T20:35:02.676-07:00", + "name": "gci-stable-53-8530-100-0", + "description": "Google, Container-VM Image, stable 53-8530.100.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.3.9 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-53-8530-102-0" + }, + "status": "READY", + "archiveSizeBytes": "186265171", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-53-8530-100-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6645258550354637135", + "creationTimestamp": "2016-11-17T16:47:28.458-08:00", + "name": "gci-stable-53-8530-102-0", + "description": "Google, Container-Optimized OS, stable 53-8530.102.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.3.9 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-55-8872-71-0" + }, + "status": "READY", + "archiveSizeBytes": "186172491", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-53-8530-102-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "8227289245417235138", + "creationTimestamp": "2016-09-08T14:46:21.781-07:00", + "name": "gci-stable-53-8530-81-0", + "description": "Google Container-VM Image Build: 53-8530.81.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.6, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-53-8530-85-0" + }, + "status": "READY", + "archiveSizeBytes": "186139703", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-53-8530-81-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "6646114953997853018", + "creationTimestamp": "2016-09-14T12:06:29.372-07:00", + "name": "gci-stable-53-8530-85-0", + "description": "Google Container-VM Image Build: 53-8530.85.0, Kernel: ChromiumOS-4.4, Kubernetes: 1.3.7, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-53-8530-94-0" + }, + "status": "READY", + "archiveSizeBytes": "186171202", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-53-8530-85-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "493168178956963421", + "creationTimestamp": "2016-09-28T14:05:54.016-07:00", + "name": "gci-stable-53-8530-94-0", + "description": "Container-VM Image Build: 53-8530.94.0, Kernel: ChromiumOS-4.4.4, Kubernetes: 1.3.8, Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-53-8530-100-0" + }, + "status": "READY", + "archiveSizeBytes": "186280007", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-53-8530-94-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "403316110166326318", + "creationTimestamp": "2016-10-21T09:30:57.546-07:00", + "name": "gci-stable-54-8743-71-0", + "description": "Google, Container-VM Image, stable 54-8743.71.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.3.9 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-54-8743-76-0" + }, + "status": "READY", + "archiveSizeBytes": "184343879", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-54-8743-71-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7045321151819371532", + "creationTimestamp": "2016-10-26T10:41:55.717-07:00", + "name": "gci-stable-54-8743-76-0", + "description": "Google, Container-VM Image, stable 54-8743.76.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.3.9 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-53-8530-102-0" + }, + "status": "READY", + "archiveSizeBytes": "184320595", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-54-8743-76-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3544096952084064852", + "creationTimestamp": "2016-11-17T17:09:15.098-08:00", + "name": "gci-stable-54-8743-86-0", + "description": "Google, Container-Optimized OS, stable 54-8743.86.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.3.10 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-54-8743-89-0" + }, + "status": "READY", + "archiveSizeBytes": "184275264", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-54-8743-86-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "7278925896225576308", + "creationTimestamp": "2016-12-06T17:53:31.355-08:00", + "name": "gci-stable-54-8743-89-0", + "description": "Google, Container-Optimized OS, stable 54-8743.89.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.3.10 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-56-9000-84-1" + }, + "status": "READY", + "archiveSizeBytes": "184428626", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-54-8743-89-0", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "5192891582281155344", + "creationTimestamp": "2016-12-14T13:47:43.134-08:00", + "name": "gci-stable-55-8872-71-0", + "description": "Google, Container-Optimized OS, stable 55-8872.71.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-55-8872-76-0" + }, + "status": "READY", + "archiveSizeBytes": "184817495", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-55-8872-71-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "1259462323879439424", + "creationTimestamp": "2017-01-18T12:40:15.692-08:00", + "name": "gci-stable-55-8872-76-0", + "description": "Google, Container-Optimized OS, stable 55-8872.76.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-55-8872-77-0" + }, + "status": "READY", + "archiveSizeBytes": "184943959", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-55-8872-76-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "7900853996945302347", + "creationTimestamp": "2017-01-27T15:54:12.992-08:00", + "name": "gci-stable-55-8872-77-0", + "description": "Google, Container-Optimized OS, stable 55-8872.77.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-55-8872-79-0" + }, + "status": "READY", + "archiveSizeBytes": "184622915", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-55-8872-77-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "8105287263345797811", + "creationTimestamp": "2017-02-03T11:05:00.708-08:00", + "name": "gci-stable-55-8872-79-0", + "description": "Google, Container-Optimized OS, stable 55-8872.79.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.6 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-57-9202-56-0" + }, + "status": "READY", + "archiveSizeBytes": "184568651", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-55-8872-79-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "4957855531425270061", + "creationTimestamp": "2017-04-03T13:59:46.978-07:00", + "name": "gci-stable-56-9000-103-0", + "description": "Google, Container-Optimized OS, stable 56-9000.103.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.9 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-56-9000-104-0" + }, + "status": "READY", + "archiveSizeBytes": "181950034", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-56-9000-103-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "8970080204001852788", + "creationTimestamp": "2017-04-06T11:06:19.456-07:00", + "name": "gci-stable-56-9000-104-0", + "description": "Google, Container-Optimized OS, stable 56-9000.104.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.9 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-57-9202-74-0" + }, + "status": "READY", + "archiveSizeBytes": "184153955", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-56-9000-104-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "9020696745768376975", + "creationTimestamp": "2017-02-16T18:48:00.390-08:00", + "name": "gci-stable-56-9000-84-1", + "description": "Google, Container-Optimized OS, stable 56-9000.84.1, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.8 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-56-9000-84-2" + }, + "status": "READY", + "archiveSizeBytes": "184325950", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-56-9000-84-1", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "7304200404358273849", + "creationTimestamp": "2017-02-17T17:39:35.040-08:00", + "name": "gci-stable-56-9000-84-2", + "description": "Google, Container-Optimized OS, stable 56-9000.84.2, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.4.8 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-56-9000-103-0" + }, + "status": "READY", + "archiveSizeBytes": "184108619", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-56-9000-84-2", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "8241161255293344608", + "creationTimestamp": "2017-03-24T11:29:35.942-07:00", + "name": "gci-stable-57-9202-56-0", + "description": "Google, Container-Optimized OS, stable 57-9202.56.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-56-9000-84-2" + }, + "status": "READY", + "archiveSizeBytes": "178555448", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-57-9202-56-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "1940297344176830429", + "creationTimestamp": "2017-04-06T11:30:10.729-07:00", + "name": "gci-stable-57-9202-64-0", + "description": "Google, Container-Optimized OS, stable 57-9202.64.0, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-57-9202-74-0" + }, + "status": "READY", + "archiveSizeBytes": "178602569", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-57-9202-64-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + }, + { + "kind": "compute#image", + "id": "7956747017731871041", + "creationTimestamp": "2017-05-22T11:36:30.282-07:00", + "name": "gci-stable-57-9202-74-0", + "description": "Google, Container-Optimized OS, 57-9202.74.0 stable, Kernel: ChromiumOS-4.4.4 Kubernetes: 1.5.4 Docker: 1.11.2", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/images/cos-stable-64-10176-62-0" + }, + "status": "READY", + "archiveSizeBytes": "179483864", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/google-containers/global/licenses/gci-public" + ], + "family": "gci-stable", + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images/gci-stable-57-9202-74-0", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1001007" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/google-containers/global/images" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:03 GMT + recorded_at: Fri, 11 May 2018 14:32:55 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions + uri: https://www.googleapis.com/compute/v1/projects/opensuse-cloud/global/images body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:55 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:03 GMT + - Fri, 11 May 2018 14:32:55 GMT Date: - - Fri, 02 Jun 2017 19:26:03 GMT + - Fri, 11 May 2018 14:32:55 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/YvQ4v37Ma9CTU2MfnxtEfKoRBWk"' + - '"4LCaMQk98kP_nV0ntLSJNIiWLdg=/bPGnesZgWmLSUfj14w2Oxiw6hvg="' Vary: - Origin - X-Origin @@ -7374,69 +59714,161 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAO3ab2+iMBwH8Oe+CsM9HdAWhI1nnhpjztNF8NHlYhjrHDcV - D8pMbtl7X/EvmwO0o/jgumQP1nbfwo+tn9D6UqtLT/7iXrLqkhfMlzHB30I8 - 9YNF34+IdEW7/XXnMgz+YI9Equc/+zOZxHdYhlDToK5uxkebwQTPIzr+V61e - f6HfWenJ4PouGyIEtg1eiF1C+x1/jiPizpdJPwLQkIEhQ92BpoVuLHitmAaU - gWmB3S8u3DlOxrqR78rYjQjcdtzjyAv9ZRL6aT+dhcTJJUvj223Tv2CBdzdB - f3wkZBlZqrparZRpEExn2F36kUJvSN3elPoM1ZwCrfPUw8yyu5mIR/Qdv2hP - SpJ/b2r0Nw6IeyjS+lnT5jkmoe8l1Wzdju3ttdSlmT/3CW01kQJ2bXHkTpNH - BhSwbnm9ykhq9+wf9sQZOs3+pPv9KLMB6BdDrO00nV5r0my3Rx3b7hxfLIIM - qb3BZGx3clKNG5ZrtdvlF6A/bNHA3GjEGN0b0OoOWp1JdzQc3x4XQSshdfKz - OWh2O6PjdNj4Svpnf7Usec2xM7Rphcu7wlGn2xsO6JPKjWYq7T765BrnTpNa - KCI8e+j7i6dkli+vSVtqUqtSsiat7+oMbRonaKPLyHQoMDqwGqZighxtFkFI - HovIORpUrTuH6fngk8rnIlAqvwSGkF4+QxAgnQtDJg+FkFa2Qgjo13wQYq1s - EUJsK+WpC2TJBrGVIA8KfgQxcXm2QLmzVAJQak1nUMgoVghSdaADNKsBLQAV - E4JshaIgLlboaFC1Ch2m56NQKv9OKCGUEEoIJS6uRGrNPV8JCErbGcNxGCyx - vMKZRHwyojIf0nOX/grxLtzjGX4v9sjEHpnYIxN7ZJffI3u3mp8vDyhPnjiS - PbwgoTvLgOd4QGXupKYu/Z0knV02aensskVLZz/wAQ3yAU3nI1rh1TKJVpjK - IhoSpLGln0haQ5B2OdLSTpwvGtKKRNNlcCMDzYGGBTVLp/+zUMsSLWer7UNv - lZbxOYLZB3OQZhPM6b2JEzPGf8+MUIYt/URlCp+ZUIarMsyHOmYRMaYMoAyB - Awzqi6VpiokoOdeZxOi5xOgXIkbn8a60CeZkly4+NyBOhMSJkDgRuuyJ0H7d - ZrAFlrkhl3MM9KG3Sls2hygcbOFzrrQPFrYIW4QtwpZL23I47Kmtp+IykVR7 - rb0B1/WilTg0AAA= + encoding: UTF-8 + string: | + { + "kind": "compute#imageList", + "id": "projects/opensuse-cloud/global/images", + "items": [ + { + "kind": "compute#image", + "id": "57759190608364474", + "creationTimestamp": "2016-10-29T03:43:33.689-07:00", + "name": "opensuse-leap-42-1-v20161029", + "description": "openSUSE, openSUSE Leap, 42.1, x86_64 built on 2016-10-29", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/opensuse-cloud/global/images/opensuse-leap-42-3-v20180116" + }, + "status": "READY", + "archiveSizeBytes": "3409304190", + "diskSizeGb": "8", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/opensuse-cloud/global/licenses/opensuse-leap-42" + ], + "family": "opensuse-leap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/opensuse-cloud/global/images/opensuse-leap-42-1-v20161029", + "labelFingerprint": "42WmSpB8rSM=" + }, + { + "kind": "compute#image", + "id": "3191443432297097181", + "creationTimestamp": "2017-01-18T13:08:02.191-08:00", + "name": "opensuse-leap-42-2-v20170118", + "description": "openSUSE, openSUSE Leap, 42.2, x86_64 built on 2017-01-18", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "OBSOLETE", + "replacement": "https://www.googleapis.com/compute/v1/projects/opensuse-cloud/global/images/opensuse-leap-42-3-v20180116" + }, + "status": "READY", + "archiveSizeBytes": "3761768172", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/opensuse-cloud/global/licenses/opensuse-leap-42" + ], + "family": "opensuse-leap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/opensuse-cloud/global/images/opensuse-leap-42-2-v20170118", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000212" + ] + }, + { + "kind": "compute#image", + "id": "8700916970114323611", + "creationTimestamp": "2017-07-26T07:43:00.965-07:00", + "name": "opensuse-leap-42-3-v20170726", + "description": "openSUSE, openSUSE Leap, 42.3, x86_64 built on 2017-07-26", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "deprecated": { + "state": "DEPRECATED", + "replacement": "https://www.googleapis.com/compute/v1/projects/opensuse-cloud/global/images/opensuse-leap-42-3-v20180116" + }, + "status": "READY", + "archiveSizeBytes": "7026116150", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/opensuse-cloud/global/licenses/opensuse-leap-42" + ], + "family": "opensuse-leap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/opensuse-cloud/global/images/opensuse-leap-42-3-v20170726", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000212" + ] + }, + { + "kind": "compute#image", + "id": "2300689892502662977", + "creationTimestamp": "2018-01-16T11:25:34.890-08:00", + "name": "opensuse-leap-42-3-v20180116", + "description": "openSUSE, openSUSE Leap, 42.3, x86_64 built on 2018-01-16", + "sourceType": "RAW", + "rawDisk": { + "source": "", + "containerType": "TAR" + }, + "status": "READY", + "archiveSizeBytes": "13514968320", + "diskSizeGb": "10", + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/opensuse-cloud/global/licenses/opensuse-leap-42" + ], + "family": "opensuse-leap", + "selfLink": "https://www.googleapis.com/compute/v1/projects/opensuse-cloud/global/images/opensuse-leap-42-3-v20180116", + "labelFingerprint": "42WmSpB8rSM=", + "licenseCodes": [ + "1000212" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/opensuse-cloud/global/images" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:03 GMT + recorded_at: Fri, 11 May 2018 14:32:55 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/asia-east1/forwardingRules + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/instances body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:56 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:03 GMT + - Fri, 11 May 2018 14:32:56 GMT Date: - - Fri, 02 Jun 2017 19:26:03 GMT + - Fri, 11 May 2018 14:32:56 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/k_-jBXN4mWu4zodZelDdhxC52ho"' + - '"nQ8reiLe8JFyE54GSqG-uL7E6eA=/5etOBVQwfFD3VccVY0QuMlKxHtU="' Vary: - Origin - X-Origin @@ -7453,52 +59885,1915 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOMRKCMBAAe17BxFa4yWDFG6j8QYAjnsQkk7uQwvHvImNj - bb+zu8+qViv5WfW1msIjZsHTElIxaSZvr9nhQCzqvGN0QDGFO07CMNFGrpE8 - YqN11+kLJLQUPINhMg0aFg2/Kj48jG4ZyK8f200kcg9QSmltCNahicTtfgLf - G9g0/NesXtUbx+4C2+YAAAA= + encoding: UTF-8 + string: | + { + "kind": "compute#instanceAggregatedList", + "id": "projects/GOOGLE_PROJECT/aggregated/instances", + "items": { + "zones/us-central1-a": { + "instances": [ + { + "kind": "compute#instance", + "id": "9028819323520596299", + "creationTimestamp": "2017-05-05T16:15:49.368-07:00", + "name": "instance-group-1-gvej", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "networkIP": "10.128.0.3", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.184.135.147" + } + ], + "fingerprint": "FNADd--WMGI=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/instance-group-1-gvej", + "deviceName": "instance-template-1", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "MaK5DI9wgnw=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/instance-template-1" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/us-central1-a/instanceGroupManagers/instance-group-1" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/instance-group-1-gvej", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Sandy Bridge", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "6489403966841993547", + "creationTimestamp": "2017-05-05T16:15:48.966-07:00", + "name": "instance-group-1-veey", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "networkIP": "10.128.0.2", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.184.135.186" + } + ], + "fingerprint": "LEoy8V7pWeY=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/instance-group-1-veey", + "deviceName": "instance-template-1", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "MaK5DI9wgnw=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/instance-template-1" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/us-central1-a/instanceGroupManagers/instance-group-1" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/instance-group-1-veey", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Sandy Bridge", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "8634296220507466852", + "creationTimestamp": "2018-02-03T07:17:32.378-08:00", + "name": "instance-group-2-kwrw", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "networkIP": "10.128.0.6", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.184.30.147" + } + ], + "fingerprint": "qNAsElx8wrQ=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/instance-group-2-kwrw", + "deviceName": "instance-template-1", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "gHBWSZ7NFbw=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/instance-template-1" + }, + { + "key": "created-by", + "value": "projects/135776510666/regions/us-central1/instanceGroupManagers/instance-group-2" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/instance-group-2-kwrw", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Sandy Bridge", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "8920424377663102465", + "creationTimestamp": "2018-05-11T06:55:59.139-07:00", + "name": "preemptible", + "description": "", + "tags": { + "fingerprint": "42WmSpB8rSM=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/custom-1-1024", + "status": "TERMINATED", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "networkIP": "10.128.0.4", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT" + } + ], + "fingerprint": "YMiAdORsxnE=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/preemptible", + "deviceName": "preemptible", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "_t6z3Bf7i-o=" + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/preemptible", + "scheduling": { + "onHostMaintenance": "TERMINATE", + "automaticRestart": false, + "preemptible": true + }, + "cpuPlatform": "Unknown CPU Platform", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + } + ] + }, + "zones/us-central1-b": { + "instances": [ + { + "kind": "compute#instance", + "id": "6342656303069425132", + "creationTimestamp": "2018-02-03T07:19:32.305-08:00", + "name": "instance-group-2-797c", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "networkIP": "10.128.0.7", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.192.138.23" + } + ], + "fingerprint": "e4uI1bMGSVk=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/disks/instance-group-2-797c", + "deviceName": "instance-template-1", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "gHBWSZ7NFbw=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/instance-template-1" + }, + { + "key": "created-by", + "value": "projects/135776510666/regions/us-central1/instanceGroupManagers/instance-group-2" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/instances/instance-group-2-797c", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Haswell", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + } + ] + }, + "zones/us-central1-c": { + "instances": [ + { + "kind": "compute#instance", + "id": "7978182915992874495", + "creationTimestamp": "2018-02-03T07:19:45.430-08:00", + "name": "instance-group-2-q1kv", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "networkIP": "10.128.0.8", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.193.223.75" + } + ], + "fingerprint": "Oiuz84mP5c8=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/disks/instance-group-2-q1kv", + "deviceName": "instance-template-1", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "gHBWSZ7NFbw=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/instance-template-1" + }, + { + "key": "created-by", + "value": "projects/135776510666/regions/us-central1/instanceGroupManagers/instance-group-2" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/instances/instance-group-2-q1kv", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Haswell", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + } + ] + }, + "zones/us-central1-f": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-central1-f' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-central1-f" + } + ] + } + }, + "zones/europe-west1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west1-b" + } + ] + } + }, + "zones/europe-west1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west1-c" + } + ] + } + }, + "zones/europe-west1-d": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west1-d' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west1-d" + } + ] + } + }, + "zones/us-west1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-west1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-west1-a" + } + ] + } + }, + "zones/us-west1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-west1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-west1-b" + } + ] + } + }, + "zones/us-west1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-west1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-west1-c" + } + ] + } + }, + "zones/asia-east1-a": { + "instances": [ + { + "kind": "compute#instance", + "id": "2226781571317376688", + "creationTimestamp": "2017-01-06T05:15:11.409-08:00", + "name": "load-balancer-1", + "description": "", + "tags": { + "fingerprint": "42WmSpB8rSM=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-standard-1", + "status": "TERMINATED", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/subnetworks/default-0d01dc41a9f25811", + "networkIP": "10.140.0.5", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT" + } + ], + "fingerprint": "Txrbd_lIc_E=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/load-balancer-1", + "deviceName": "load-balancer-1", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "_t6z3Bf7i-o=" + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-1", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Unknown CPU Platform", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + } + ] + }, + "zones/asia-east1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-east1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-east1-b" + } + ] + } + }, + "zones/asia-east1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-east1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-east1-c" + } + ] + } + }, + "zones/us-east1-b": { + "instances": [ + { + "kind": "compute#instance", + "id": "1757744565355327605", + "creationTimestamp": "2017-06-23T05:50:35.265-07:00", + "name": "cfme-auto-ig-dk1z", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1/subnetworks/default-372dec1aa369576e", + "networkIP": "10.142.0.4", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.185.69.234" + } + ], + "fingerprint": "Ggrkya_N-ew=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/disks/cfme-auto-ig-dk1z", + "deviceName": "cfme-auto-it-win", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "zbpDnS1k4C0=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/cfme-auto-it-win" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/us-east1-b/instanceGroupManagers/cfme-auto-ig" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/instances/cfme-auto-ig-dk1z", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Haswell", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "1607647557283000433", + "creationTimestamp": "2017-06-23T05:50:39.268-07:00", + "name": "cfme-auto-ig-jg50", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1/subnetworks/default-372dec1aa369576e", + "networkIP": "10.142.0.5", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.185.94.235" + } + ], + "fingerprint": "SPrd1IRhRik=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/disks/cfme-auto-ig-jg50", + "deviceName": "cfme-auto-it-win", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "zbpDnS1k4C0=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/cfme-auto-it-win" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/us-east1-b/instanceGroupManagers/cfme-auto-ig" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/instances/cfme-auto-ig-jg50", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Haswell", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "1602451531618103413", + "creationTimestamp": "2017-06-23T05:50:35.051-07:00", + "name": "cfme-auto-ig-nddf", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1/subnetworks/default-372dec1aa369576e", + "networkIP": "10.142.0.3", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.185.46.204" + } + ], + "fingerprint": "fnh_xtFJFfM=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/disks/cfme-auto-ig-nddf", + "deviceName": "cfme-auto-it-win", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "zbpDnS1k4C0=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/cfme-auto-it-win" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/us-east1-b/instanceGroupManagers/cfme-auto-ig" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/instances/cfme-auto-ig-nddf", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Haswell", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "2083234809321676933", + "creationTimestamp": "2016-10-05T13:11:22.662-07:00", + "name": "cu-24x7", + "description": "", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1/subnetworks/default-372dec1aa369576e", + "networkIP": "10.142.0.2", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "104.196.166.192" + } + ], + "fingerprint": "QhiToXw4u1I=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/disks/cu-24x7", + "deviceName": "cu-24x7", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "_t6z3Bf7i-o=" + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/instances/cu-24x7", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Haswell", + "labels": { + "http-server": "", + "https-server": "" + }, + "labelFingerprint": "6smc4R4d39I=", + "startRestricted": false, + "deletionProtection": false + } + ] + }, + "zones/us-east1-c": { + "instances": [ + { + "kind": "compute#instance", + "id": "3801021534917226736", + "creationTimestamp": "2018-05-10T06:50:25.160-07:00", + "name": "simaishi-g3", + "description": "", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-standard-1", + "status": "TERMINATED", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1/subnetworks/default-372dec1aa369576e", + "networkIP": "10.142.0.6", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT" + } + ], + "fingerprint": "X4_ddeJf0hM=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/disks/simaishi-g3", + "deviceName": "simaishi-g3", + "index": 0, + "boot": true, + "autoDelete": true, + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "CQ5uh_FNy4g=", + "items": [ + { + "key": "ssh-keys", + "value": "simaishi:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCqgV8T4axK0xhHJ6QO8I9PXEpnDU8m+IaNUdUGyVYBpzSkJMPA4yIOYzycpra+ZXOOlauXdL69AZ6np+4Q833VwJzpQ7/bIZXym4DYvn+SraCXgAhnzvbJnOJPfCQnIZ1NCKMCJvwlMSex1/Be+AaRu+Z5mEUTrAEiExfdmTS+nl5xWYel4GPA4vq9lDEKZdyYdkDN22k01CxpiBFr+qLpQ0ECLnT2ZvWq144kzK9Nx012YTdBb7agj/kDo+1PIEdP5t9RvYmdGfOrAAPodACucKUGIoiAJwDUbfId4Zvf6+tNUM//EVOFUhRWgkIoJXpJWrQkqhADPCm3ZpPmWt5L simaishi" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/instances/simaishi-g3", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Unknown CPU Platform", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + } + ] + }, + "zones/us-east1-d": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east1-d' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east1-d" + } + ] + } + }, + "zones/asia-northeast1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-northeast1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-northeast1-a" + } + ] + } + }, + "zones/asia-northeast1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-northeast1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-northeast1-b" + } + ] + } + }, + "zones/asia-northeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-northeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-northeast1-c" + } + ] + } + }, + "zones/asia-southeast1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-southeast1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-southeast1-a" + } + ] + } + }, + "zones/asia-southeast1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-southeast1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-southeast1-b" + } + ] + } + }, + "zones/asia-southeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-southeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-southeast1-c" + } + ] + } + }, + "zones/us-east4-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east4-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east4-a" + } + ] + } + }, + "zones/us-east4-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east4-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east4-b" + } + ] + } + }, + "zones/us-east4-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east4-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east4-c" + } + ] + } + }, + "zones/australia-southeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/australia-southeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/australia-southeast1-c" + } + ] + } + }, + "zones/australia-southeast1-a": { + "instances": [ + { + "kind": "compute#instance", + "id": "5932316205646884615", + "creationTimestamp": "2018-01-03T18:31:05.578-08:00", + "name": "gke-tachoi-cluster-default-pool-8f292535-2rp9", + "tags": { + "items": [ + "gke-tachoi-cluster-4866da88-node" + ], + "fingerprint": "HFNr93BfW4U=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a", + "canIpForward": true, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/australia-southeast1/subnetworks/default", + "networkIP": "10.152.0.4", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "external-nat", + "natIP": "35.189.46.7" + } + ], + "fingerprint": "RR1553AQ9Kw=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/disks/gke-tachoi-cluster-default-pool-8f292535-2rp9", + "deviceName": "persistent-disk-0", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos", + "https://www.googleapis.com/compute/v1/projects/gke-node-images/global/licenses/gke-node" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "LaMqxao2FPg=", + "items": [ + { + "key": "kube-env", + "value": "ALLOCATE_NODE_CIDRS: \"true\"\nCA_CERT: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURDekNDQWZPZ0F3SUJBZ0lRS0Fzci9qS3crZXVZSlVzNTJOMGk3VEFOQmdrcWhraUc5dzBCQVFzRkFEQXYKTVMwd0t3WURWUVFERXlSaVpEYzJPRGt4WXkwNFlqQmlMVFF4WldZdE9EVmtZeTB4WVRsbFlXRTJORGhpWldJdwpIaGNOTVRnd01UQTBNREV6TURJNFdoY05Nak13TVRBek1ESXpNREk0V2pBdk1TMHdLd1lEVlFRREV5UmlaRGMyCk9Ea3hZeTA0WWpCaUxUUXhaV1l0T0RWa1l5MHhZVGxsWVdFMk5EaGlaV0l3Z2dFaU1BMEdDU3FHU0liM0RRRUIKQVFVQUE0SUJEd0F3Z2dFS0FvSUJBUUNvQjMwY3BIVDdlVzVPS2x0V2JiM1RkL09VOSs4ZEhEV3ZaNk1KRXdQZAp4OUZNRERCUEF2VHZsRDBSakhEMzBjZ1pNS3UreUVpVkp5Q214T2swOEZ5a2p6bUFUV1R0aUpJRHR1Y21vNEpMCjhic3luQmM5cHZSNGprNm5HSzdYdFdVK1ZTZDllRWJNQWl2MTAyU0h6L1ZTSDZqa2ZMVVVqbk9FQWQ3VVhiVnAKWDNFMVRjZm45bUFSbFVrM3FnUzdQNnlQMFU0eWJncDF1Y2FwZXdaM2hoYkpLblVHSVBnSnhrcDhlT3NIbjcvVwpLS3pWVzlFSmtTVnFqaHhRaStYUis3Z29EUXpZUmtpUlpDbXhlK0FONVl0MXJQK2FjenpGNWtaZk1SWC9BU1NnCnhTRmRvako3bG9vOEZjUGF6ZFVYRVZYK1Zva0ExN290YncxMlp2UFpEeDd0QWdNQkFBR2pJekFoTUE0R0ExVWQKRHdFQi93UUVBd0lDQkRBUEJnTlZIUk1CQWY4RUJUQURBUUgvTUEwR0NTcUdTSWIzRFFFQkN3VUFBNElCQVFBUwprOVh2cXNyVkdiQkg1NFAxbVArTEcvaHZ1VjhGNm4yMDNFK2thTWFXUnRyQWYzQkFiMWY4bFZ2eVJnbFloeUhCClIyZUo3cUMrOXo0SGtPbHhud0ZtWnlaWEgvRUY1VjlyVUZQQ3BXUTNZWlpqYk13NmJGdXpFc3dUMnI4QVVhM1QKN3k5WWdvTEJsVC9ZVTRhbU5IelhuUjlwMjRNM1A1K0NhdThYMEZnNnl6UFRpZ0hsMlRYd1dCZjFZZEVybjkzcAp1d3kwU1hRTmxDTEhpMUdackZoUjlnSTRJQVRSKzgvdGlHcnZkN0Fkd3paZGxVaEFWRndZZHA1MVB5SUVEcEdMCkcyZzVTUTFyamtlTmFtUzRvZ3V6UHFSRVhLcVZCVk5Tc2NQdzVTekJtN0doTDVyYVVaM1lkUG4zNkN0NmVXOVIKVkhodFdENWtxWFJKb3FZVVltSjgKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\nCLUSTER_IP_RANGE: 10.48.0.0/14\nCLUSTER_NAME: tachoi-cluster\nDISABLE_DOCKER_LIVE_RESTORE: \"true\"\nDNS_DOMAIN: cluster.local\nDNS_SERVER_IP: 10.51.240.10\nDOCKER_REGISTRY_MIRROR_URL: https://mirror.gcr.io\nDOCKER_STORAGE_DRIVER: overlay\nELASTICSEARCH_LOGGING_REPLICAS: \"1\"\nENABLE_CLUSTER_DNS: \"true\"\nENABLE_CLUSTER_LOGGING: \"false\"\nENABLE_CLUSTER_MONITORING: stackdriver\nENABLE_CLUSTER_REGISTRY: \"false\"\nENABLE_CLUSTER_UI: \"true\"\nENABLE_L7_LOADBALANCING: glbc\nENABLE_METRICS_SERVER: \"false\"\nENABLE_NODE_LOGGING: \"true\"\nENABLE_NODE_PROBLEM_DETECTOR: standalone\nENV_TIMESTAMP: 2018-01-04T02:30:28+00:00\nEVICTION_HARD: memory.available\u003c100Mi,nodefs.available\u003c10%,nodefs.inodesFree\u003c5%\nEXTRA_DOCKER_OPTS: --insecure-registry 10.0.0.0/8\nFEATURE_GATES: ExperimentalCriticalPodAnnotation=true\nHPA_USE_REST_CLIENTS: \"false\"\nINSTANCE_PREFIX: gke-tachoi-cluster-4866da88\nKUBE_ADDON_REGISTRY: asia.gcr.io/google_containers\nKUBE_MANIFESTS_TAR_HASH: c0940432742d2102f68266242412e37b0881c958\nKUBE_MANIFESTS_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz\nKUBE_PROXY_TOKEN: 5gRQETqOuI0b0us_TIvCiZ7M_5twdLTwT2z9kwaVWlY=\nKUBELET_CERT: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUMyekNDQWNPZ0F3SUJBZ0lRU1c5aVl3cUlrMVpiT3UyZ2JrRVlQREFOQmdrcWhraUc5dzBCQVFzRkFEQXYKTVMwd0t3WURWUVFERXlSaVpEYzJPRGt4WXkwNFlqQmlMVFF4WldZdE9EVmtZeTB4WVRsbFlXRTJORGhpWldJdwpIaGNOTVRnd01UQTBNREl6TURJNVdoY05Nak13TVRBek1ESXpNREk1V2pBU01SQXdEZ1lEVlFRREV3ZHJkV0psCmJHVjBNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTBic09JSzEwa0dtN0s3QlgKb25uMXJPWStMVThENEs5V0hJa0doM1RsaDNteERUYkZ3dXQyUkxmeFpmSWZldHg4YmFGZmtOVCsvQ2hLWEsraApqWXdlWjFsV0JBdzljdTJuQ3JBOHJad3NaRm9tM2R3K0poczJnbU9kcWc0VXhkaUN6bWo1ZFk4MHROSzRDQ1lICit0bmp1azRGUWU5SVRMeTVEMGVLd0V0RVVUalhhRGd1OGxibGxiNmhSU2Y3bHVsM0kzQzBMNFpQRElpSVB4SnkKNXhpVU43cUc0WTFBWFNxcW53YkMrbVJ6QVEwK1Z5SFVFWHVhTUo3YVpnNGRyY2JKZkEyZWUrWjlDQXJLNkRQSgoxS2tIMG1FV1NzS0pGWENOdFpjUmpnM0V2a05sYzE1bnNFOWMvcVpxWWowM1FCTEl0M0JqNzFVUitBYjlVY0w5CkV6eThtUUlEQVFBQm94QXdEakFNQmdOVkhSTUJBZjhFQWpBQU1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQVEKdjRvZWhjS1FwK3NwenllL0pTaTY0eXBzRmI5M05JeTZTaVAwWU9QVURibk9pNGUvSnhvZFNKeWgzREtLcjIrTwpDbTQrRWxDNDJnVkx6L2FZbXUxNWRXRVhFZTQrL1IxSW45eG9Hb01qM3VJd1U5MUd5SlltM0dPenlNd2lnUTJzCmlHTjljWE0wblZqUzlBa09uWlZjVE1CMGpNU1BORnlXVnprdzdudkZJTlkxVEM4b3BZUGxJTVBJWlpZVFYvdkEKaGNNcWxwenhLV3lqMUF0bHk0MWdGS0w1clV5ZWllT3p6YkZzUUVyNDZmNjQ3MFBIZ1o2QmdGZm9KcUUyamtvUwpyczJOWWZ6ZmdrRUhFUFBMakVJQlZiclozYm5TREJLdnhBVjAyRVl4bUI0UzVQY05CTC84Zjc3SThlZ2ozTTZiCjh3YVF3U29LeWFxbG9GYVVndWQ0Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\nKUBELET_KEY: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFb2dJQkFBS0NBUUVBMGJzT0lLMTBrR203SzdCWG9ubjFyT1krTFU4RDRLOVdISWtHaDNUbGgzbXhEVGJGCnd1dDJSTGZ4WmZJZmV0eDhiYUZma05UKy9DaEtYSytoall3ZVoxbFdCQXc5Y3UybkNyQThyWndzWkZvbTNkdysKSmhzMmdtT2RxZzRVeGRpQ3ptajVkWTgwdE5LNENDWUgrdG5qdWs0RlFlOUlUTHk1RDBlS3dFdEVVVGpYYURndQo4bGJsbGI2aFJTZjdsdWwzSTNDMEw0WlBESWlJUHhKeTV4aVVON3FHNFkxQVhTcXFud2JDK21SekFRMCtWeUhVCkVYdWFNSjdhWmc0ZHJjYkpmQTJlZStaOUNBcks2RFBKMUtrSDBtRVdTc0tKRlhDTnRaY1JqZzNFdmtObGMxNW4Kc0U5Yy9xWnFZajAzUUJMSXQzQmo3MVVSK0FiOVVjTDlFenk4bVFJREFRQUJBb0lCQUFyekRwWkRLQUpBR3Q3NQppbUczcDAxYkNlVDRxcFdvNGNDRW9Od2lqTGNwY2Naa1ZTZkxmald4T3IrZFIrcDBwMlJiMSs3cVI5T25VTmFNCjdzekNnM1hXMHFoTWNVcldRSEhNNktZUnNMbWVnVWYwN3lPektRSGVySVVMemliVUdtUW5VOXJBMnJvVUJEcWMKcmE3NWdDdWlWaUR1bXFJeStpQmpsa2xheEpyTzJqSk5JYW91WHluRVppNEhKRWhzbUxIaW5kMHBmNUFIOXViTgppcGpwQ21Zd21GaTkzNlEvODJOYkZiVnhyT2toVnFKcmJRWGpKZHRFa0RtQXlYc2NYZWg3WnF0RGxVRkgxRGZjCmduc1RnKzFjc3hKbm1LcTJleFJQdUcwd1gzYWZwejZrUkREN1l5VkJSYXIwL296bWU5aDgxOHJNaXJtVHdvWHIKWmRtaTRmOENnWUVBNkJPOVhQcXRwOEdDdDZsUkNoeS9qQ1I0WFNQMXFMVXBTbE1ncTc2VHBHVm5mNGw2TkpoSwpXNDVuWmptOThIa3FNeFZYdFBhaTZoWW1UOFJyOWVzSlBpNnBEakZOMFlFZVVSS2M3eXVNaU9Dc1FCNllwSVl1CnZuNWl2UnA5VlFxcHVRc0RQaDRlOFZ1d25VNnQxcCtIT3QxaE1tZ3JVU05UbFc3KzdqU1ZrTjhDZ1lFQTUxbWUKTFBhNUhYNzRpa3JTWkxKVGIwZmxzT0ppNnRaMEZhWGcvUFZMUTVxVlI2bzJHN3Z0bmQycjQ5YjBxOWkyV3lXQQpzR0pBRW4vU1p1L1NDcnpnMjdWeUdFMjRVV0RDUFZQTGs4eDI2cklQeVZVNlQ0Zk5KRVBtekN2NXZFZjJLWHg3CmJEZk1ySzdKdkwrUHRxM2NWNlZvbnZyL2x2ODgyQzIrRFY3cWlZY0NnWUFvS3RwNGtFNmtIV01SaExXcENXYkIKeThJbFpNYnRCMFg1UGtBR1dicldGbEwraVAza3dvTUVLN2FMdyt5ekJWV2ZkODh4WEFyQWQwcjBQV3Z1S1ZyMQpMMEJGVzVVN2NKeWRyWm9KNzBDb3BESkwrcit5b2lMUEI3THhSZmR4VTZJaWk5eG8wTy9NR0hHT0dJTVFCWlp6ClFzUEM1TEt5bldtbkVJb0JFb3JjZ3dLQmdCWCs4RW9JSHl1TndlV3NIWHJUZFpsVDlhT3Vzb2J2WXRRWUZGOFkKbDFKVEpUUk9HNXpoYmtNZksxT2JRV0lCVmIwdXdLQ0VodUQ3WkM3RFNHNGE3U29XZzBXS1JpYitreGt2bVdCeApCVEZsUXBqNjBITjFUdXpPdytmUG1vdnJMNTFjSjRQdmZqZEEydzltQ3l6c05OSGtlU0Q4YmthVjk5djU1V0x5CkRreUxBb0dBUnZERVBWQUh2d3pMU1Zyc2tOWWppR2VncG1mVnh6UVdOQUVsWlltWXJ2M1BzTWtTcS9MRnZnNEcKS3Zzd1k5a2pCbm9vTHN1eGVtRGRLVmw5MDNKTy9WQ3JVaVRJVjJsRDlrTk9EeGl6cUZjekladUY3UE5sZ2k0ZQp6THBCQ1E5Q1hYYVRBU0pHeU42enM4QVBVNVhIZVVDLzNXckVQanBOZjFLZldtTFp3MDQ9Ci0tLS0tRU5EIFJTQSBQUklWQVRFIEtFWS0tLS0tCg==\nKUBELET_TEST_ARGS: --docker-disable-shared-pid --kube-reserved=cpu=60m,memory=960Mi\nKUBERNETES_MASTER: \"false\"\nKUBERNETES_MASTER_NAME: 35.201.28.223\nLOGGING_DESTINATION: gcp\nNETWORK_PROVIDER: kubenet\nNODE_LABELS: beta.kubernetes.io/fluentd-ds-ready=true,cloud.google.com/gke-nodepool=default-pool\nNODE_LOCAL_SSDS_EXT: \"\"\nNODE_PROBLEM_DETECTOR_TOKEN: BXhTLGIjOH_1PMvnEDMTJgrbxWg_chQruMHYDpFTtCc=\nSALT_TAR_HASH: 754852fefa25d0c9d9ec499afab62605c97b6449\nSALT_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-salt.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-salt.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-salt.tar.gz\nSERVER_BINARY_TAR_HASH: 26c86bce55e2d139168d626232eabfa3a776b28b\nSERVER_BINARY_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz\nSERVICE_CLUSTER_IP_RANGE: 10.51.240.0/20\nZONE: australia-southeast1-a\n" + }, + { + "key": "user-data", + "value": "#cloud-config\n\nwrite_files:\n - path: /etc/systemd/system/kube-node-installation.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Download and install k8s binaries and configurations\n After=network-online.target\n\n [Service]\n Type=oneshot\n RemainAfterExit=yes\n ExecStartPre=/bin/mkdir -p /home/kubernetes/bin\n ExecStartPre=/bin/mount --bind /home/kubernetes/bin /home/kubernetes/bin\n ExecStartPre=/bin/mount -o remount,exec /home/kubernetes/bin\n ExecStartPre=/usr/bin/curl --fail --retry 5 --retry-delay 3 --silent --show-error\t-H \"X-Google-Metadata-Request: True\" -o /home/kubernetes/bin/configure.sh http://metadata.google.internal/computeMetadata/v1/instance/attributes/configure-sh\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/configure.sh\n ExecStart=/home/kubernetes/bin/configure.sh\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-node-configuration.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Configure kubernetes node\n After=kube-node-installation.service\n\n [Service]\n Type=oneshot\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/configure-helper.sh\n ExecStart=/home/kubernetes/bin/configure-helper.sh\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-docker-monitor.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes health monitoring for docker\n After=kube-node-configuration.service\n\n [Service]\n Restart=always\n RestartSec=10\n RemainAfterExit=yes\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh\n ExecStart=/home/kubernetes/bin/health-monitor.sh docker\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kubelet-monitor.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes health monitoring for kubelet\n After=kube-node-configuration.service\n\n [Service]\n Restart=always\n RestartSec=10\n RemainAfterExit=yes\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh\n ExecStart=/home/kubernetes/bin/health-monitor.sh kubelet\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-logrotate.timer\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Hourly kube-logrotate invocation\n\n [Timer]\n OnCalendar=hourly\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-logrotate.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes log rotation\n After=kube-node-configuration.service\n\n [Service]\n Type=oneshot\n ExecStart=-/usr/sbin/logrotate /etc/logrotate.conf\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kubernetes.target\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes\n\n [Install]\n WantedBy=multi-user.target\n\nruncmd:\n - systemctl daemon-reload\n - systemctl enable kube-node-installation.service\n - systemctl enable kube-node-configuration.service\n - systemctl enable kube-docker-monitor.service\n - systemctl enable kubelet-monitor.service\n - systemctl enable kube-logrotate.timer\n - systemctl enable kube-logrotate.service\n - systemctl enable kubernetes.target\n - systemctl start kubernetes.target\n" + }, + { + "key": "gci-update-strategy", + "value": "update_disabled" + }, + { + "key": "gci-ensure-gke-docker", + "value": "true" + }, + { + "key": "configure-sh", + "value": "#!/bin/bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n# Due to the GCE custom metadata size limit, we split the entire script into two\n# files configure.sh and configure-helper.sh. The functionality of downloading\n# kubernetes configuration, manifests, docker images, and binary files are\n# put in configure.sh, which is uploaded via GCE custom metadata.\n\nset -o errexit\nset -o nounset\nset -o pipefail\n\nfunction set-broken-motd {\n cat \u003e /etc/motd \u003c\u003cEOF\nBroken (or in progress) Kubernetes node setup! Check the cluster initialization status\nusing the following commands.\n\nMaster instance:\n - sudo systemctl status kube-master-installation\n - sudo systemctl status kube-master-configuration\n\nNode instance:\n - sudo systemctl status kube-node-installation\n - sudo systemctl status kube-node-configuration\nEOF\n}\n\nfunction download-kube-env {\n # Fetch kube-env from GCE metadata server.\n local -r tmp_kube_env=\"/tmp/kube-env.yaml\"\n curl --fail --retry 5 --retry-delay 3 --silent --show-error \\\n -H \"X-Google-Metadata-Request: True\" \\\n -o \"${tmp_kube_env}\" \\\n http://metadata.google.internal/computeMetadata/v1/instance/attributes/kube-env\n # Convert the yaml format file into a shell-style file.\n eval $(python -c '''\nimport pipes,sys,yaml\nfor k,v in yaml.load(sys.stdin).iteritems():\n print(\"readonly {var}={value}\".format(var = k, value = pipes.quote(str(v))))\n''' \u003c \"${tmp_kube_env}\" \u003e \"${KUBE_HOME}/kube-env\")\n rm -f \"${tmp_kube_env}\"\n}\n\nfunction download-kube-master-certs {\n # Fetch kube-env from GCE metadata server.\n local -r tmp_kube_master_certs=\"/tmp/kube-master-certs.yaml\"\n curl --fail --retry 5 --retry-delay 3 --silent --show-error \\\n -H \"X-Google-Metadata-Request: True\" \\\n -o \"${tmp_kube_master_certs}\" \\\n http://metadata.google.internal/computeMetadata/v1/instance/attributes/kube-master-certs\n # Convert the yaml format file into a shell-style file.\n eval $(python -c '''\nimport pipes,sys,yaml\nfor k,v in yaml.load(sys.stdin).iteritems():\n print(\"readonly {var}={value}\".format(var = k, value = pipes.quote(str(v))))\n''' \u003c \"${tmp_kube_master_certs}\" \u003e \"${KUBE_HOME}/kube-master-certs\")\n rm -f \"${tmp_kube_master_certs}\"\n}\n\nfunction validate-hash {\n local -r file=\"$1\"\n local -r expected=\"$2\"\n\n actual=$(sha1sum ${file} | awk '{ print $1 }') || true\n if [[ \"${actual}\" != \"${expected}\" ]]; then\n echo \"== ${file} corrupted, sha1 ${actual} doesn't match expected ${expected} ==\"\n return 1\n fi\n}\n\n# Retry a download until we get it. Takes a hash and a set of URLs.\n#\n# $1 is the sha1 of the URL. Can be \"\" if the sha1 is unknown.\n# $2+ are the URLs to download.\nfunction download-or-bust {\n local -r hash=\"$1\"\n shift 1\n\n local -r urls=( $* )\n while true; do\n for url in \"${urls[@]}\"; do\n local file=\"${url##*/}\"\n rm -f \"${file}\"\n if ! curl -f --ipv4 -Lo \"${file}\" --connect-timeout 20 --max-time 300 --retry 6 --retry-delay 10 \"${url}\"; then\n echo \"== Failed to download ${url}. Retrying. ==\"\n elif [[ -n \"${hash}\" ]] && ! validate-hash \"${file}\" \"${hash}\"; then\n echo \"== Hash validation of ${url} failed. Retrying. ==\"\n else\n if [[ -n \"${hash}\" ]]; then\n echo \"== Downloaded ${url} (SHA1 = ${hash}) ==\"\n else\n echo \"== Downloaded ${url} ==\"\n fi\n return\n fi\n done\n done\n}\n\nfunction split-commas {\n echo $1 | tr \",\" \"\\n\"\n}\n\nfunction install-gci-mounter-tools {\n CONTAINERIZED_MOUNTER_HOME=\"${KUBE_HOME}/containerized_mounter\"\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}\"\n chmod a+x \"${CONTAINERIZED_MOUNTER_HOME}\"\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}/rootfs\"\n local -r mounter_tar_sha=\"8003b798cf33c7f91320cd6ee5cec4fa22244571\"\n download-or-bust \"${mounter_tar_sha}\" \"https://storage.googleapis.com/kubernetes-release/gci-mounter/mounter.tar\"\n cp \"${dst_dir}/kubernetes/gci-trusty/gci-mounter\" \"${CONTAINERIZED_MOUNTER_HOME}/mounter\"\n chmod a+x \"${CONTAINERIZED_MOUNTER_HOME}/mounter\"\n mv \"${KUBE_HOME}/mounter.tar\" /tmp/mounter.tar\n tar xvf /tmp/mounter.tar -C \"${CONTAINERIZED_MOUNTER_HOME}/rootfs\"\n rm /tmp/mounter.tar\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}/rootfs/var/lib/kubelet\"\n}\n\n# Install node problem detector binary.\nfunction install-node-problem-detector {\n if [[ -n \"${NODE_PROBLEM_DETECTOR_VERSION:-}\" ]]; then\n local -r npd_version=\"${NODE_PROBLEM_DETECTOR_VERSION}\"\n local -r npd_sha1=\"${NODE_PROBLEM_DETECTOR_TAR_HASH}\"\n else\n local -r npd_version=\"v0.4.1\"\n local -r npd_sha1=\"a57a3fe64cab8a18ec654f5cef0aec59dae62568\"\n fi\n local -r npd_release_path=\"https://storage.googleapis.com/kubernetes-release\"\n local -r npd_tar=\"node-problem-detector-${npd_version}.tar.gz\"\n download-or-bust \"${npd_sha1}\" \"${npd_release_path}/node-problem-detector/${npd_tar}\"\n local -r npd_dir=\"${KUBE_HOME}/node-problem-detector\"\n mkdir -p \"${npd_dir}\"\n tar xzf \"${KUBE_HOME}/${npd_tar}\" -C \"${npd_dir}\" --overwrite\n mv \"${npd_dir}/bin\"/* \"${KUBE_HOME}/bin\"\n chmod a+x \"${KUBE_HOME}/bin/node-problem-detector\"\n rmdir \"${npd_dir}/bin\"\n rm -f \"${KUBE_HOME}/${npd_tar}\"\n}\n\n# Downloads kubernetes binaries and kube-system manifest tarball, unpacks them,\n# and places them into suitable directories. Files are placed in /home/kubernetes.\nfunction install-kube-binary-config {\n cd \"${KUBE_HOME}\"\n local -r server_binary_tar_urls=( $(split-commas \"${SERVER_BINARY_TAR_URL}\") )\n local -r server_binary_tar=\"${server_binary_tar_urls[0]##*/}\"\n if [[ -n \"${SERVER_BINARY_TAR_HASH:-}\" ]]; then\n local -r server_binary_tar_hash=\"${SERVER_BINARY_TAR_HASH}\"\n else\n echo \"Downloading binary release sha1 (not found in env)\"\n download-or-bust \"\" \"${server_binary_tar_urls[@]/.tar.gz/.tar.gz.sha1}\"\n local -r server_binary_tar_hash=$(cat \"${server_binary_tar}.sha1\")\n fi\n echo \"Downloading binary release tar\"\n download-or-bust \"${server_binary_tar_hash}\" \"${server_binary_tar_urls[@]}\"\n tar xzf \"${KUBE_HOME}/${server_binary_tar}\" -C \"${KUBE_HOME}\" --overwrite\n # Copy docker_tag and image files to ${KUBE_HOME}/kube-docker-files.\n src_dir=\"${KUBE_HOME}/kubernetes/server/bin\"\n dst_dir=\"${KUBE_HOME}/kube-docker-files\"\n mkdir -p \"${dst_dir}\"\n cp \"${src_dir}/\"*.docker_tag \"${dst_dir}\"\n if [[ \"${KUBERNETES_MASTER:-}\" == \"false\" ]]; then\n cp \"${src_dir}/kube-proxy.tar\" \"${dst_dir}\"\n if [[ \"${ENABLE_NODE_PROBLEM_DETECTOR:-}\" == \"standalone\" ]]; then\n install-node-problem-detector\n fi\n else\n cp \"${src_dir}/kube-apiserver.tar\" \"${dst_dir}\"\n cp \"${src_dir}/kube-controller-manager.tar\" \"${dst_dir}\"\n cp \"${src_dir}/kube-scheduler.tar\" \"${dst_dir}\"\n cp -r \"${KUBE_HOME}/kubernetes/addons\" \"${dst_dir}\"\n fi\n local -r kube_bin=\"${KUBE_HOME}/bin\"\n mv \"${src_dir}/kubelet\" \"${kube_bin}\"\n mv \"${src_dir}/kubectl\" \"${kube_bin}\"\n\n if [[ \"${NETWORK_PROVIDER:-}\" == \"kubenet\" ]] || \\\n [[ \"${NETWORK_PROVIDER:-}\" == \"cni\" ]]; then\n #TODO(andyzheng0831): We should make the cni version number as a k8s env variable.\n local -r cni_tar=\"cni-0799f5732f2a11b329d9e3d51b9c8f2e3759f2ff.tar.gz\"\n local -r cni_sha1=\"1d9788b0f5420e1a219aad2cb8681823fc515e7c\"\n download-or-bust \"${cni_sha1}\" \"https://storage.googleapis.com/kubernetes-release/network-plugins/${cni_tar}\"\n local -r cni_dir=\"${KUBE_HOME}/cni\"\n mkdir -p \"${cni_dir}\"\n tar xzf \"${KUBE_HOME}/${cni_tar}\" -C \"${cni_dir}\" --overwrite\n mv \"${cni_dir}/bin\"/* \"${kube_bin}\"\n rmdir \"${cni_dir}/bin\"\n rm -f \"${KUBE_HOME}/${cni_tar}\"\n fi\n\n mv \"${KUBE_HOME}/kubernetes/LICENSES\" \"${KUBE_HOME}\"\n mv \"${KUBE_HOME}/kubernetes/kubernetes-src.tar.gz\" \"${KUBE_HOME}\"\n\n # Put kube-system pods manifests in ${KUBE_HOME}/kube-manifests/.\n dst_dir=\"${KUBE_HOME}/kube-manifests\"\n mkdir -p \"${dst_dir}\"\n local -r manifests_tar_urls=( $(split-commas \"${KUBE_MANIFESTS_TAR_URL}\") )\n local -r manifests_tar=\"${manifests_tar_urls[0]##*/}\"\n if [ -n \"${KUBE_MANIFESTS_TAR_HASH:-}\" ]; then\n local -r manifests_tar_hash=\"${KUBE_MANIFESTS_TAR_HASH}\"\n else\n echo \"Downloading k8s manifests sha1 (not found in env)\"\n download-or-bust \"\" \"${manifests_tar_urls[@]/.tar.gz/.tar.gz.sha1}\"\n local -r manifests_tar_hash=$(cat \"${manifests_tar}.sha1\")\n fi\n echo \"Downloading k8s manifests tar\"\n download-or-bust \"${manifests_tar_hash}\" \"${manifests_tar_urls[@]}\"\n tar xzf \"${KUBE_HOME}/${manifests_tar}\" -C \"${dst_dir}\" --overwrite\n local -r kube_addon_registry=\"${KUBE_ADDON_REGISTRY:-gcr.io/google_containers}\"\n if [[ \"${kube_addon_registry}\" != \"gcr.io/google_containers\" ]]; then\n find \"${dst_dir}\" -name \\*.yaml -or -name \\*.yaml.in | \\\n xargs sed -ri \"s@(image:\\s.*)gcr.io/google_containers@\\1${kube_addon_registry}@\"\n find \"${dst_dir}\" -name \\*.manifest -or -name \\*.json | \\\n xargs sed -ri \"s@(image\\\":\\s+\\\")gcr.io/google_containers@\\1${kube_addon_registry}@\"\n fi\n cp \"${dst_dir}/kubernetes/gci-trusty/gci-configure-helper.sh\" \"${KUBE_HOME}/bin/configure-helper.sh\"\n cp \"${dst_dir}/kubernetes/gci-trusty/health-monitor.sh\" \"${KUBE_HOME}/bin/health-monitor.sh\"\n chmod -R 755 \"${kube_bin}\"\n\n # Install gci mounter related artifacts to allow mounting storage volumes in GCI\n install-gci-mounter-tools\n \n # Clean up.\n rm -rf \"${KUBE_HOME}/kubernetes\"\n rm -f \"${KUBE_HOME}/${server_binary_tar}\"\n rm -f \"${KUBE_HOME}/${server_binary_tar}.sha1\"\n rm -f \"${KUBE_HOME}/${manifests_tar}\"\n rm -f \"${KUBE_HOME}/${manifests_tar}.sha1\"\n}\n\n######### Main Function ##########\necho \"Start to install kubernetes files\"\nset-broken-motd\nKUBE_HOME=\"/home/kubernetes\"\ndownload-kube-env\nsource \"${KUBE_HOME}/kube-env\"\nif [[ \"${KUBERNETES_MASTER:-}\" == \"true\" ]]; then\n download-kube-master-certs\nfi\ninstall-kube-binary-config\necho \"Done for installing kubernetes files\"\n\n" + }, + { + "key": "cluster-name", + "value": "tachoi-cluster" + }, + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/gke-tachoi-cluster-default-pool-8f292535" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/australia-southeast1-a/instanceGroupManagers/gke-tachoi-cluster-default-pool-8f292535-grp" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/compute", + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/instances/gke-tachoi-cluster-default-pool-8f292535-2rp9", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Broadwell", + "labels": { + "goog-gke-node": "" + }, + "labelFingerprint": "2ixRno2sGuM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "5285513969323224839", + "creationTimestamp": "2018-01-03T18:31:05.780-08:00", + "name": "gke-tachoi-cluster-default-pool-8f292535-9l68", + "tags": { + "items": [ + "gke-tachoi-cluster-4866da88-node" + ], + "fingerprint": "HFNr93BfW4U=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a", + "canIpForward": true, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/australia-southeast1/subnetworks/default", + "networkIP": "10.152.0.5", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "external-nat", + "natIP": "35.189.57.134" + } + ], + "fingerprint": "IqUcHSwVung=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/disks/gke-tachoi-cluster-default-pool-8f292535-9l68", + "deviceName": "persistent-disk-0", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos", + "https://www.googleapis.com/compute/v1/projects/gke-node-images/global/licenses/gke-node" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "LaMqxao2FPg=", + "items": [ + { + "key": "kube-env", + "value": "ALLOCATE_NODE_CIDRS: \"true\"\nCA_CERT: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURDekNDQWZPZ0F3SUJBZ0lRS0Fzci9qS3crZXVZSlVzNTJOMGk3VEFOQmdrcWhraUc5dzBCQVFzRkFEQXYKTVMwd0t3WURWUVFERXlSaVpEYzJPRGt4WXkwNFlqQmlMVFF4WldZdE9EVmtZeTB4WVRsbFlXRTJORGhpWldJdwpIaGNOTVRnd01UQTBNREV6TURJNFdoY05Nak13TVRBek1ESXpNREk0V2pBdk1TMHdLd1lEVlFRREV5UmlaRGMyCk9Ea3hZeTA0WWpCaUxUUXhaV1l0T0RWa1l5MHhZVGxsWVdFMk5EaGlaV0l3Z2dFaU1BMEdDU3FHU0liM0RRRUIKQVFVQUE0SUJEd0F3Z2dFS0FvSUJBUUNvQjMwY3BIVDdlVzVPS2x0V2JiM1RkL09VOSs4ZEhEV3ZaNk1KRXdQZAp4OUZNRERCUEF2VHZsRDBSakhEMzBjZ1pNS3UreUVpVkp5Q214T2swOEZ5a2p6bUFUV1R0aUpJRHR1Y21vNEpMCjhic3luQmM5cHZSNGprNm5HSzdYdFdVK1ZTZDllRWJNQWl2MTAyU0h6L1ZTSDZqa2ZMVVVqbk9FQWQ3VVhiVnAKWDNFMVRjZm45bUFSbFVrM3FnUzdQNnlQMFU0eWJncDF1Y2FwZXdaM2hoYkpLblVHSVBnSnhrcDhlT3NIbjcvVwpLS3pWVzlFSmtTVnFqaHhRaStYUis3Z29EUXpZUmtpUlpDbXhlK0FONVl0MXJQK2FjenpGNWtaZk1SWC9BU1NnCnhTRmRvako3bG9vOEZjUGF6ZFVYRVZYK1Zva0ExN290YncxMlp2UFpEeDd0QWdNQkFBR2pJekFoTUE0R0ExVWQKRHdFQi93UUVBd0lDQkRBUEJnTlZIUk1CQWY4RUJUQURBUUgvTUEwR0NTcUdTSWIzRFFFQkN3VUFBNElCQVFBUwprOVh2cXNyVkdiQkg1NFAxbVArTEcvaHZ1VjhGNm4yMDNFK2thTWFXUnRyQWYzQkFiMWY4bFZ2eVJnbFloeUhCClIyZUo3cUMrOXo0SGtPbHhud0ZtWnlaWEgvRUY1VjlyVUZQQ3BXUTNZWlpqYk13NmJGdXpFc3dUMnI4QVVhM1QKN3k5WWdvTEJsVC9ZVTRhbU5IelhuUjlwMjRNM1A1K0NhdThYMEZnNnl6UFRpZ0hsMlRYd1dCZjFZZEVybjkzcAp1d3kwU1hRTmxDTEhpMUdackZoUjlnSTRJQVRSKzgvdGlHcnZkN0Fkd3paZGxVaEFWRndZZHA1MVB5SUVEcEdMCkcyZzVTUTFyamtlTmFtUzRvZ3V6UHFSRVhLcVZCVk5Tc2NQdzVTekJtN0doTDVyYVVaM1lkUG4zNkN0NmVXOVIKVkhodFdENWtxWFJKb3FZVVltSjgKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\nCLUSTER_IP_RANGE: 10.48.0.0/14\nCLUSTER_NAME: tachoi-cluster\nDISABLE_DOCKER_LIVE_RESTORE: \"true\"\nDNS_DOMAIN: cluster.local\nDNS_SERVER_IP: 10.51.240.10\nDOCKER_REGISTRY_MIRROR_URL: https://mirror.gcr.io\nDOCKER_STORAGE_DRIVER: overlay\nELASTICSEARCH_LOGGING_REPLICAS: \"1\"\nENABLE_CLUSTER_DNS: \"true\"\nENABLE_CLUSTER_LOGGING: \"false\"\nENABLE_CLUSTER_MONITORING: stackdriver\nENABLE_CLUSTER_REGISTRY: \"false\"\nENABLE_CLUSTER_UI: \"true\"\nENABLE_L7_LOADBALANCING: glbc\nENABLE_METRICS_SERVER: \"false\"\nENABLE_NODE_LOGGING: \"true\"\nENABLE_NODE_PROBLEM_DETECTOR: standalone\nENV_TIMESTAMP: 2018-01-04T02:30:28+00:00\nEVICTION_HARD: memory.available\u003c100Mi,nodefs.available\u003c10%,nodefs.inodesFree\u003c5%\nEXTRA_DOCKER_OPTS: --insecure-registry 10.0.0.0/8\nFEATURE_GATES: ExperimentalCriticalPodAnnotation=true\nHPA_USE_REST_CLIENTS: \"false\"\nINSTANCE_PREFIX: gke-tachoi-cluster-4866da88\nKUBE_ADDON_REGISTRY: asia.gcr.io/google_containers\nKUBE_MANIFESTS_TAR_HASH: c0940432742d2102f68266242412e37b0881c958\nKUBE_MANIFESTS_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz\nKUBE_PROXY_TOKEN: 5gRQETqOuI0b0us_TIvCiZ7M_5twdLTwT2z9kwaVWlY=\nKUBELET_CERT: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUMyekNDQWNPZ0F3SUJBZ0lRU1c5aVl3cUlrMVpiT3UyZ2JrRVlQREFOQmdrcWhraUc5dzBCQVFzRkFEQXYKTVMwd0t3WURWUVFERXlSaVpEYzJPRGt4WXkwNFlqQmlMVFF4WldZdE9EVmtZeTB4WVRsbFlXRTJORGhpWldJdwpIaGNOTVRnd01UQTBNREl6TURJNVdoY05Nak13TVRBek1ESXpNREk1V2pBU01SQXdEZ1lEVlFRREV3ZHJkV0psCmJHVjBNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTBic09JSzEwa0dtN0s3QlgKb25uMXJPWStMVThENEs5V0hJa0doM1RsaDNteERUYkZ3dXQyUkxmeFpmSWZldHg4YmFGZmtOVCsvQ2hLWEsraApqWXdlWjFsV0JBdzljdTJuQ3JBOHJad3NaRm9tM2R3K0poczJnbU9kcWc0VXhkaUN6bWo1ZFk4MHROSzRDQ1lICit0bmp1azRGUWU5SVRMeTVEMGVLd0V0RVVUalhhRGd1OGxibGxiNmhSU2Y3bHVsM0kzQzBMNFpQRElpSVB4SnkKNXhpVU43cUc0WTFBWFNxcW53YkMrbVJ6QVEwK1Z5SFVFWHVhTUo3YVpnNGRyY2JKZkEyZWUrWjlDQXJLNkRQSgoxS2tIMG1FV1NzS0pGWENOdFpjUmpnM0V2a05sYzE1bnNFOWMvcVpxWWowM1FCTEl0M0JqNzFVUitBYjlVY0w5CkV6eThtUUlEQVFBQm94QXdEakFNQmdOVkhSTUJBZjhFQWpBQU1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQVEKdjRvZWhjS1FwK3NwenllL0pTaTY0eXBzRmI5M05JeTZTaVAwWU9QVURibk9pNGUvSnhvZFNKeWgzREtLcjIrTwpDbTQrRWxDNDJnVkx6L2FZbXUxNWRXRVhFZTQrL1IxSW45eG9Hb01qM3VJd1U5MUd5SlltM0dPenlNd2lnUTJzCmlHTjljWE0wblZqUzlBa09uWlZjVE1CMGpNU1BORnlXVnprdzdudkZJTlkxVEM4b3BZUGxJTVBJWlpZVFYvdkEKaGNNcWxwenhLV3lqMUF0bHk0MWdGS0w1clV5ZWllT3p6YkZzUUVyNDZmNjQ3MFBIZ1o2QmdGZm9KcUUyamtvUwpyczJOWWZ6ZmdrRUhFUFBMakVJQlZiclozYm5TREJLdnhBVjAyRVl4bUI0UzVQY05CTC84Zjc3SThlZ2ozTTZiCjh3YVF3U29LeWFxbG9GYVVndWQ0Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\nKUBELET_KEY: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFb2dJQkFBS0NBUUVBMGJzT0lLMTBrR203SzdCWG9ubjFyT1krTFU4RDRLOVdISWtHaDNUbGgzbXhEVGJGCnd1dDJSTGZ4WmZJZmV0eDhiYUZma05UKy9DaEtYSytoall3ZVoxbFdCQXc5Y3UybkNyQThyWndzWkZvbTNkdysKSmhzMmdtT2RxZzRVeGRpQ3ptajVkWTgwdE5LNENDWUgrdG5qdWs0RlFlOUlUTHk1RDBlS3dFdEVVVGpYYURndQo4bGJsbGI2aFJTZjdsdWwzSTNDMEw0WlBESWlJUHhKeTV4aVVON3FHNFkxQVhTcXFud2JDK21SekFRMCtWeUhVCkVYdWFNSjdhWmc0ZHJjYkpmQTJlZStaOUNBcks2RFBKMUtrSDBtRVdTc0tKRlhDTnRaY1JqZzNFdmtObGMxNW4Kc0U5Yy9xWnFZajAzUUJMSXQzQmo3MVVSK0FiOVVjTDlFenk4bVFJREFRQUJBb0lCQUFyekRwWkRLQUpBR3Q3NQppbUczcDAxYkNlVDRxcFdvNGNDRW9Od2lqTGNwY2Naa1ZTZkxmald4T3IrZFIrcDBwMlJiMSs3cVI5T25VTmFNCjdzekNnM1hXMHFoTWNVcldRSEhNNktZUnNMbWVnVWYwN3lPektRSGVySVVMemliVUdtUW5VOXJBMnJvVUJEcWMKcmE3NWdDdWlWaUR1bXFJeStpQmpsa2xheEpyTzJqSk5JYW91WHluRVppNEhKRWhzbUxIaW5kMHBmNUFIOXViTgppcGpwQ21Zd21GaTkzNlEvODJOYkZiVnhyT2toVnFKcmJRWGpKZHRFa0RtQXlYc2NYZWg3WnF0RGxVRkgxRGZjCmduc1RnKzFjc3hKbm1LcTJleFJQdUcwd1gzYWZwejZrUkREN1l5VkJSYXIwL296bWU5aDgxOHJNaXJtVHdvWHIKWmRtaTRmOENnWUVBNkJPOVhQcXRwOEdDdDZsUkNoeS9qQ1I0WFNQMXFMVXBTbE1ncTc2VHBHVm5mNGw2TkpoSwpXNDVuWmptOThIa3FNeFZYdFBhaTZoWW1UOFJyOWVzSlBpNnBEakZOMFlFZVVSS2M3eXVNaU9Dc1FCNllwSVl1CnZuNWl2UnA5VlFxcHVRc0RQaDRlOFZ1d25VNnQxcCtIT3QxaE1tZ3JVU05UbFc3KzdqU1ZrTjhDZ1lFQTUxbWUKTFBhNUhYNzRpa3JTWkxKVGIwZmxzT0ppNnRaMEZhWGcvUFZMUTVxVlI2bzJHN3Z0bmQycjQ5YjBxOWkyV3lXQQpzR0pBRW4vU1p1L1NDcnpnMjdWeUdFMjRVV0RDUFZQTGs4eDI2cklQeVZVNlQ0Zk5KRVBtekN2NXZFZjJLWHg3CmJEZk1ySzdKdkwrUHRxM2NWNlZvbnZyL2x2ODgyQzIrRFY3cWlZY0NnWUFvS3RwNGtFNmtIV01SaExXcENXYkIKeThJbFpNYnRCMFg1UGtBR1dicldGbEwraVAza3dvTUVLN2FMdyt5ekJWV2ZkODh4WEFyQWQwcjBQV3Z1S1ZyMQpMMEJGVzVVN2NKeWRyWm9KNzBDb3BESkwrcit5b2lMUEI3THhSZmR4VTZJaWk5eG8wTy9NR0hHT0dJTVFCWlp6ClFzUEM1TEt5bldtbkVJb0JFb3JjZ3dLQmdCWCs4RW9JSHl1TndlV3NIWHJUZFpsVDlhT3Vzb2J2WXRRWUZGOFkKbDFKVEpUUk9HNXpoYmtNZksxT2JRV0lCVmIwdXdLQ0VodUQ3WkM3RFNHNGE3U29XZzBXS1JpYitreGt2bVdCeApCVEZsUXBqNjBITjFUdXpPdytmUG1vdnJMNTFjSjRQdmZqZEEydzltQ3l6c05OSGtlU0Q4YmthVjk5djU1V0x5CkRreUxBb0dBUnZERVBWQUh2d3pMU1Zyc2tOWWppR2VncG1mVnh6UVdOQUVsWlltWXJ2M1BzTWtTcS9MRnZnNEcKS3Zzd1k5a2pCbm9vTHN1eGVtRGRLVmw5MDNKTy9WQ3JVaVRJVjJsRDlrTk9EeGl6cUZjekladUY3UE5sZ2k0ZQp6THBCQ1E5Q1hYYVRBU0pHeU42enM4QVBVNVhIZVVDLzNXckVQanBOZjFLZldtTFp3MDQ9Ci0tLS0tRU5EIFJTQSBQUklWQVRFIEtFWS0tLS0tCg==\nKUBELET_TEST_ARGS: --docker-disable-shared-pid --kube-reserved=cpu=60m,memory=960Mi\nKUBERNETES_MASTER: \"false\"\nKUBERNETES_MASTER_NAME: 35.201.28.223\nLOGGING_DESTINATION: gcp\nNETWORK_PROVIDER: kubenet\nNODE_LABELS: beta.kubernetes.io/fluentd-ds-ready=true,cloud.google.com/gke-nodepool=default-pool\nNODE_LOCAL_SSDS_EXT: \"\"\nNODE_PROBLEM_DETECTOR_TOKEN: BXhTLGIjOH_1PMvnEDMTJgrbxWg_chQruMHYDpFTtCc=\nSALT_TAR_HASH: 754852fefa25d0c9d9ec499afab62605c97b6449\nSALT_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-salt.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-salt.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-salt.tar.gz\nSERVER_BINARY_TAR_HASH: 26c86bce55e2d139168d626232eabfa3a776b28b\nSERVER_BINARY_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz\nSERVICE_CLUSTER_IP_RANGE: 10.51.240.0/20\nZONE: australia-southeast1-a\n" + }, + { + "key": "user-data", + "value": "#cloud-config\n\nwrite_files:\n - path: /etc/systemd/system/kube-node-installation.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Download and install k8s binaries and configurations\n After=network-online.target\n\n [Service]\n Type=oneshot\n RemainAfterExit=yes\n ExecStartPre=/bin/mkdir -p /home/kubernetes/bin\n ExecStartPre=/bin/mount --bind /home/kubernetes/bin /home/kubernetes/bin\n ExecStartPre=/bin/mount -o remount,exec /home/kubernetes/bin\n ExecStartPre=/usr/bin/curl --fail --retry 5 --retry-delay 3 --silent --show-error\t-H \"X-Google-Metadata-Request: True\" -o /home/kubernetes/bin/configure.sh http://metadata.google.internal/computeMetadata/v1/instance/attributes/configure-sh\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/configure.sh\n ExecStart=/home/kubernetes/bin/configure.sh\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-node-configuration.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Configure kubernetes node\n After=kube-node-installation.service\n\n [Service]\n Type=oneshot\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/configure-helper.sh\n ExecStart=/home/kubernetes/bin/configure-helper.sh\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-docker-monitor.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes health monitoring for docker\n After=kube-node-configuration.service\n\n [Service]\n Restart=always\n RestartSec=10\n RemainAfterExit=yes\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh\n ExecStart=/home/kubernetes/bin/health-monitor.sh docker\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kubelet-monitor.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes health monitoring for kubelet\n After=kube-node-configuration.service\n\n [Service]\n Restart=always\n RestartSec=10\n RemainAfterExit=yes\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh\n ExecStart=/home/kubernetes/bin/health-monitor.sh kubelet\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-logrotate.timer\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Hourly kube-logrotate invocation\n\n [Timer]\n OnCalendar=hourly\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-logrotate.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes log rotation\n After=kube-node-configuration.service\n\n [Service]\n Type=oneshot\n ExecStart=-/usr/sbin/logrotate /etc/logrotate.conf\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kubernetes.target\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes\n\n [Install]\n WantedBy=multi-user.target\n\nruncmd:\n - systemctl daemon-reload\n - systemctl enable kube-node-installation.service\n - systemctl enable kube-node-configuration.service\n - systemctl enable kube-docker-monitor.service\n - systemctl enable kubelet-monitor.service\n - systemctl enable kube-logrotate.timer\n - systemctl enable kube-logrotate.service\n - systemctl enable kubernetes.target\n - systemctl start kubernetes.target\n" + }, + { + "key": "gci-update-strategy", + "value": "update_disabled" + }, + { + "key": "gci-ensure-gke-docker", + "value": "true" + }, + { + "key": "configure-sh", + "value": "#!/bin/bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n# Due to the GCE custom metadata size limit, we split the entire script into two\n# files configure.sh and configure-helper.sh. The functionality of downloading\n# kubernetes configuration, manifests, docker images, and binary files are\n# put in configure.sh, which is uploaded via GCE custom metadata.\n\nset -o errexit\nset -o nounset\nset -o pipefail\n\nfunction set-broken-motd {\n cat \u003e /etc/motd \u003c\u003cEOF\nBroken (or in progress) Kubernetes node setup! Check the cluster initialization status\nusing the following commands.\n\nMaster instance:\n - sudo systemctl status kube-master-installation\n - sudo systemctl status kube-master-configuration\n\nNode instance:\n - sudo systemctl status kube-node-installation\n - sudo systemctl status kube-node-configuration\nEOF\n}\n\nfunction download-kube-env {\n # Fetch kube-env from GCE metadata server.\n local -r tmp_kube_env=\"/tmp/kube-env.yaml\"\n curl --fail --retry 5 --retry-delay 3 --silent --show-error \\\n -H \"X-Google-Metadata-Request: True\" \\\n -o \"${tmp_kube_env}\" \\\n http://metadata.google.internal/computeMetadata/v1/instance/attributes/kube-env\n # Convert the yaml format file into a shell-style file.\n eval $(python -c '''\nimport pipes,sys,yaml\nfor k,v in yaml.load(sys.stdin).iteritems():\n print(\"readonly {var}={value}\".format(var = k, value = pipes.quote(str(v))))\n''' \u003c \"${tmp_kube_env}\" \u003e \"${KUBE_HOME}/kube-env\")\n rm -f \"${tmp_kube_env}\"\n}\n\nfunction download-kube-master-certs {\n # Fetch kube-env from GCE metadata server.\n local -r tmp_kube_master_certs=\"/tmp/kube-master-certs.yaml\"\n curl --fail --retry 5 --retry-delay 3 --silent --show-error \\\n -H \"X-Google-Metadata-Request: True\" \\\n -o \"${tmp_kube_master_certs}\" \\\n http://metadata.google.internal/computeMetadata/v1/instance/attributes/kube-master-certs\n # Convert the yaml format file into a shell-style file.\n eval $(python -c '''\nimport pipes,sys,yaml\nfor k,v in yaml.load(sys.stdin).iteritems():\n print(\"readonly {var}={value}\".format(var = k, value = pipes.quote(str(v))))\n''' \u003c \"${tmp_kube_master_certs}\" \u003e \"${KUBE_HOME}/kube-master-certs\")\n rm -f \"${tmp_kube_master_certs}\"\n}\n\nfunction validate-hash {\n local -r file=\"$1\"\n local -r expected=\"$2\"\n\n actual=$(sha1sum ${file} | awk '{ print $1 }') || true\n if [[ \"${actual}\" != \"${expected}\" ]]; then\n echo \"== ${file} corrupted, sha1 ${actual} doesn't match expected ${expected} ==\"\n return 1\n fi\n}\n\n# Retry a download until we get it. Takes a hash and a set of URLs.\n#\n# $1 is the sha1 of the URL. Can be \"\" if the sha1 is unknown.\n# $2+ are the URLs to download.\nfunction download-or-bust {\n local -r hash=\"$1\"\n shift 1\n\n local -r urls=( $* )\n while true; do\n for url in \"${urls[@]}\"; do\n local file=\"${url##*/}\"\n rm -f \"${file}\"\n if ! curl -f --ipv4 -Lo \"${file}\" --connect-timeout 20 --max-time 300 --retry 6 --retry-delay 10 \"${url}\"; then\n echo \"== Failed to download ${url}. Retrying. ==\"\n elif [[ -n \"${hash}\" ]] && ! validate-hash \"${file}\" \"${hash}\"; then\n echo \"== Hash validation of ${url} failed. Retrying. ==\"\n else\n if [[ -n \"${hash}\" ]]; then\n echo \"== Downloaded ${url} (SHA1 = ${hash}) ==\"\n else\n echo \"== Downloaded ${url} ==\"\n fi\n return\n fi\n done\n done\n}\n\nfunction split-commas {\n echo $1 | tr \",\" \"\\n\"\n}\n\nfunction install-gci-mounter-tools {\n CONTAINERIZED_MOUNTER_HOME=\"${KUBE_HOME}/containerized_mounter\"\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}\"\n chmod a+x \"${CONTAINERIZED_MOUNTER_HOME}\"\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}/rootfs\"\n local -r mounter_tar_sha=\"8003b798cf33c7f91320cd6ee5cec4fa22244571\"\n download-or-bust \"${mounter_tar_sha}\" \"https://storage.googleapis.com/kubernetes-release/gci-mounter/mounter.tar\"\n cp \"${dst_dir}/kubernetes/gci-trusty/gci-mounter\" \"${CONTAINERIZED_MOUNTER_HOME}/mounter\"\n chmod a+x \"${CONTAINERIZED_MOUNTER_HOME}/mounter\"\n mv \"${KUBE_HOME}/mounter.tar\" /tmp/mounter.tar\n tar xvf /tmp/mounter.tar -C \"${CONTAINERIZED_MOUNTER_HOME}/rootfs\"\n rm /tmp/mounter.tar\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}/rootfs/var/lib/kubelet\"\n}\n\n# Install node problem detector binary.\nfunction install-node-problem-detector {\n if [[ -n \"${NODE_PROBLEM_DETECTOR_VERSION:-}\" ]]; then\n local -r npd_version=\"${NODE_PROBLEM_DETECTOR_VERSION}\"\n local -r npd_sha1=\"${NODE_PROBLEM_DETECTOR_TAR_HASH}\"\n else\n local -r npd_version=\"v0.4.1\"\n local -r npd_sha1=\"a57a3fe64cab8a18ec654f5cef0aec59dae62568\"\n fi\n local -r npd_release_path=\"https://storage.googleapis.com/kubernetes-release\"\n local -r npd_tar=\"node-problem-detector-${npd_version}.tar.gz\"\n download-or-bust \"${npd_sha1}\" \"${npd_release_path}/node-problem-detector/${npd_tar}\"\n local -r npd_dir=\"${KUBE_HOME}/node-problem-detector\"\n mkdir -p \"${npd_dir}\"\n tar xzf \"${KUBE_HOME}/${npd_tar}\" -C \"${npd_dir}\" --overwrite\n mv \"${npd_dir}/bin\"/* \"${KUBE_HOME}/bin\"\n chmod a+x \"${KUBE_HOME}/bin/node-problem-detector\"\n rmdir \"${npd_dir}/bin\"\n rm -f \"${KUBE_HOME}/${npd_tar}\"\n}\n\n# Downloads kubernetes binaries and kube-system manifest tarball, unpacks them,\n# and places them into suitable directories. Files are placed in /home/kubernetes.\nfunction install-kube-binary-config {\n cd \"${KUBE_HOME}\"\n local -r server_binary_tar_urls=( $(split-commas \"${SERVER_BINARY_TAR_URL}\") )\n local -r server_binary_tar=\"${server_binary_tar_urls[0]##*/}\"\n if [[ -n \"${SERVER_BINARY_TAR_HASH:-}\" ]]; then\n local -r server_binary_tar_hash=\"${SERVER_BINARY_TAR_HASH}\"\n else\n echo \"Downloading binary release sha1 (not found in env)\"\n download-or-bust \"\" \"${server_binary_tar_urls[@]/.tar.gz/.tar.gz.sha1}\"\n local -r server_binary_tar_hash=$(cat \"${server_binary_tar}.sha1\")\n fi\n echo \"Downloading binary release tar\"\n download-or-bust \"${server_binary_tar_hash}\" \"${server_binary_tar_urls[@]}\"\n tar xzf \"${KUBE_HOME}/${server_binary_tar}\" -C \"${KUBE_HOME}\" --overwrite\n # Copy docker_tag and image files to ${KUBE_HOME}/kube-docker-files.\n src_dir=\"${KUBE_HOME}/kubernetes/server/bin\"\n dst_dir=\"${KUBE_HOME}/kube-docker-files\"\n mkdir -p \"${dst_dir}\"\n cp \"${src_dir}/\"*.docker_tag \"${dst_dir}\"\n if [[ \"${KUBERNETES_MASTER:-}\" == \"false\" ]]; then\n cp \"${src_dir}/kube-proxy.tar\" \"${dst_dir}\"\n if [[ \"${ENABLE_NODE_PROBLEM_DETECTOR:-}\" == \"standalone\" ]]; then\n install-node-problem-detector\n fi\n else\n cp \"${src_dir}/kube-apiserver.tar\" \"${dst_dir}\"\n cp \"${src_dir}/kube-controller-manager.tar\" \"${dst_dir}\"\n cp \"${src_dir}/kube-scheduler.tar\" \"${dst_dir}\"\n cp -r \"${KUBE_HOME}/kubernetes/addons\" \"${dst_dir}\"\n fi\n local -r kube_bin=\"${KUBE_HOME}/bin\"\n mv \"${src_dir}/kubelet\" \"${kube_bin}\"\n mv \"${src_dir}/kubectl\" \"${kube_bin}\"\n\n if [[ \"${NETWORK_PROVIDER:-}\" == \"kubenet\" ]] || \\\n [[ \"${NETWORK_PROVIDER:-}\" == \"cni\" ]]; then\n #TODO(andyzheng0831): We should make the cni version number as a k8s env variable.\n local -r cni_tar=\"cni-0799f5732f2a11b329d9e3d51b9c8f2e3759f2ff.tar.gz\"\n local -r cni_sha1=\"1d9788b0f5420e1a219aad2cb8681823fc515e7c\"\n download-or-bust \"${cni_sha1}\" \"https://storage.googleapis.com/kubernetes-release/network-plugins/${cni_tar}\"\n local -r cni_dir=\"${KUBE_HOME}/cni\"\n mkdir -p \"${cni_dir}\"\n tar xzf \"${KUBE_HOME}/${cni_tar}\" -C \"${cni_dir}\" --overwrite\n mv \"${cni_dir}/bin\"/* \"${kube_bin}\"\n rmdir \"${cni_dir}/bin\"\n rm -f \"${KUBE_HOME}/${cni_tar}\"\n fi\n\n mv \"${KUBE_HOME}/kubernetes/LICENSES\" \"${KUBE_HOME}\"\n mv \"${KUBE_HOME}/kubernetes/kubernetes-src.tar.gz\" \"${KUBE_HOME}\"\n\n # Put kube-system pods manifests in ${KUBE_HOME}/kube-manifests/.\n dst_dir=\"${KUBE_HOME}/kube-manifests\"\n mkdir -p \"${dst_dir}\"\n local -r manifests_tar_urls=( $(split-commas \"${KUBE_MANIFESTS_TAR_URL}\") )\n local -r manifests_tar=\"${manifests_tar_urls[0]##*/}\"\n if [ -n \"${KUBE_MANIFESTS_TAR_HASH:-}\" ]; then\n local -r manifests_tar_hash=\"${KUBE_MANIFESTS_TAR_HASH}\"\n else\n echo \"Downloading k8s manifests sha1 (not found in env)\"\n download-or-bust \"\" \"${manifests_tar_urls[@]/.tar.gz/.tar.gz.sha1}\"\n local -r manifests_tar_hash=$(cat \"${manifests_tar}.sha1\")\n fi\n echo \"Downloading k8s manifests tar\"\n download-or-bust \"${manifests_tar_hash}\" \"${manifests_tar_urls[@]}\"\n tar xzf \"${KUBE_HOME}/${manifests_tar}\" -C \"${dst_dir}\" --overwrite\n local -r kube_addon_registry=\"${KUBE_ADDON_REGISTRY:-gcr.io/google_containers}\"\n if [[ \"${kube_addon_registry}\" != \"gcr.io/google_containers\" ]]; then\n find \"${dst_dir}\" -name \\*.yaml -or -name \\*.yaml.in | \\\n xargs sed -ri \"s@(image:\\s.*)gcr.io/google_containers@\\1${kube_addon_registry}@\"\n find \"${dst_dir}\" -name \\*.manifest -or -name \\*.json | \\\n xargs sed -ri \"s@(image\\\":\\s+\\\")gcr.io/google_containers@\\1${kube_addon_registry}@\"\n fi\n cp \"${dst_dir}/kubernetes/gci-trusty/gci-configure-helper.sh\" \"${KUBE_HOME}/bin/configure-helper.sh\"\n cp \"${dst_dir}/kubernetes/gci-trusty/health-monitor.sh\" \"${KUBE_HOME}/bin/health-monitor.sh\"\n chmod -R 755 \"${kube_bin}\"\n\n # Install gci mounter related artifacts to allow mounting storage volumes in GCI\n install-gci-mounter-tools\n \n # Clean up.\n rm -rf \"${KUBE_HOME}/kubernetes\"\n rm -f \"${KUBE_HOME}/${server_binary_tar}\"\n rm -f \"${KUBE_HOME}/${server_binary_tar}.sha1\"\n rm -f \"${KUBE_HOME}/${manifests_tar}\"\n rm -f \"${KUBE_HOME}/${manifests_tar}.sha1\"\n}\n\n######### Main Function ##########\necho \"Start to install kubernetes files\"\nset-broken-motd\nKUBE_HOME=\"/home/kubernetes\"\ndownload-kube-env\nsource \"${KUBE_HOME}/kube-env\"\nif [[ \"${KUBERNETES_MASTER:-}\" == \"true\" ]]; then\n download-kube-master-certs\nfi\ninstall-kube-binary-config\necho \"Done for installing kubernetes files\"\n\n" + }, + { + "key": "cluster-name", + "value": "tachoi-cluster" + }, + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/gke-tachoi-cluster-default-pool-8f292535" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/australia-southeast1-a/instanceGroupManagers/gke-tachoi-cluster-default-pool-8f292535-grp" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/compute", + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/instances/gke-tachoi-cluster-default-pool-8f292535-9l68", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Broadwell", + "labels": { + "goog-gke-node": "" + }, + "labelFingerprint": "2ixRno2sGuM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "770026276204326662", + "creationTimestamp": "2018-01-03T18:31:05.780-08:00", + "name": "gke-tachoi-cluster-default-pool-8f292535-f1gn", + "tags": { + "items": [ + "gke-tachoi-cluster-4866da88-node" + ], + "fingerprint": "HFNr93BfW4U=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a", + "canIpForward": true, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/australia-southeast1/subnetworks/default", + "networkIP": "10.152.0.6", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "external-nat", + "natIP": "35.201.28.146" + } + ], + "fingerprint": "Rycx7tUiqtA=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/disks/gke-tachoi-cluster-default-pool-8f292535-f1gn", + "deviceName": "persistent-disk-0", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos", + "https://www.googleapis.com/compute/v1/projects/gke-node-images/global/licenses/gke-node" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "LaMqxao2FPg=", + "items": [ + { + "key": "kube-env", + "value": "ALLOCATE_NODE_CIDRS: \"true\"\nCA_CERT: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURDekNDQWZPZ0F3SUJBZ0lRS0Fzci9qS3crZXVZSlVzNTJOMGk3VEFOQmdrcWhraUc5dzBCQVFzRkFEQXYKTVMwd0t3WURWUVFERXlSaVpEYzJPRGt4WXkwNFlqQmlMVFF4WldZdE9EVmtZeTB4WVRsbFlXRTJORGhpWldJdwpIaGNOTVRnd01UQTBNREV6TURJNFdoY05Nak13TVRBek1ESXpNREk0V2pBdk1TMHdLd1lEVlFRREV5UmlaRGMyCk9Ea3hZeTA0WWpCaUxUUXhaV1l0T0RWa1l5MHhZVGxsWVdFMk5EaGlaV0l3Z2dFaU1BMEdDU3FHU0liM0RRRUIKQVFVQUE0SUJEd0F3Z2dFS0FvSUJBUUNvQjMwY3BIVDdlVzVPS2x0V2JiM1RkL09VOSs4ZEhEV3ZaNk1KRXdQZAp4OUZNRERCUEF2VHZsRDBSakhEMzBjZ1pNS3UreUVpVkp5Q214T2swOEZ5a2p6bUFUV1R0aUpJRHR1Y21vNEpMCjhic3luQmM5cHZSNGprNm5HSzdYdFdVK1ZTZDllRWJNQWl2MTAyU0h6L1ZTSDZqa2ZMVVVqbk9FQWQ3VVhiVnAKWDNFMVRjZm45bUFSbFVrM3FnUzdQNnlQMFU0eWJncDF1Y2FwZXdaM2hoYkpLblVHSVBnSnhrcDhlT3NIbjcvVwpLS3pWVzlFSmtTVnFqaHhRaStYUis3Z29EUXpZUmtpUlpDbXhlK0FONVl0MXJQK2FjenpGNWtaZk1SWC9BU1NnCnhTRmRvako3bG9vOEZjUGF6ZFVYRVZYK1Zva0ExN290YncxMlp2UFpEeDd0QWdNQkFBR2pJekFoTUE0R0ExVWQKRHdFQi93UUVBd0lDQkRBUEJnTlZIUk1CQWY4RUJUQURBUUgvTUEwR0NTcUdTSWIzRFFFQkN3VUFBNElCQVFBUwprOVh2cXNyVkdiQkg1NFAxbVArTEcvaHZ1VjhGNm4yMDNFK2thTWFXUnRyQWYzQkFiMWY4bFZ2eVJnbFloeUhCClIyZUo3cUMrOXo0SGtPbHhud0ZtWnlaWEgvRUY1VjlyVUZQQ3BXUTNZWlpqYk13NmJGdXpFc3dUMnI4QVVhM1QKN3k5WWdvTEJsVC9ZVTRhbU5IelhuUjlwMjRNM1A1K0NhdThYMEZnNnl6UFRpZ0hsMlRYd1dCZjFZZEVybjkzcAp1d3kwU1hRTmxDTEhpMUdackZoUjlnSTRJQVRSKzgvdGlHcnZkN0Fkd3paZGxVaEFWRndZZHA1MVB5SUVEcEdMCkcyZzVTUTFyamtlTmFtUzRvZ3V6UHFSRVhLcVZCVk5Tc2NQdzVTekJtN0doTDVyYVVaM1lkUG4zNkN0NmVXOVIKVkhodFdENWtxWFJKb3FZVVltSjgKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\nCLUSTER_IP_RANGE: 10.48.0.0/14\nCLUSTER_NAME: tachoi-cluster\nDISABLE_DOCKER_LIVE_RESTORE: \"true\"\nDNS_DOMAIN: cluster.local\nDNS_SERVER_IP: 10.51.240.10\nDOCKER_REGISTRY_MIRROR_URL: https://mirror.gcr.io\nDOCKER_STORAGE_DRIVER: overlay\nELASTICSEARCH_LOGGING_REPLICAS: \"1\"\nENABLE_CLUSTER_DNS: \"true\"\nENABLE_CLUSTER_LOGGING: \"false\"\nENABLE_CLUSTER_MONITORING: stackdriver\nENABLE_CLUSTER_REGISTRY: \"false\"\nENABLE_CLUSTER_UI: \"true\"\nENABLE_L7_LOADBALANCING: glbc\nENABLE_METRICS_SERVER: \"false\"\nENABLE_NODE_LOGGING: \"true\"\nENABLE_NODE_PROBLEM_DETECTOR: standalone\nENV_TIMESTAMP: 2018-01-04T02:30:28+00:00\nEVICTION_HARD: memory.available\u003c100Mi,nodefs.available\u003c10%,nodefs.inodesFree\u003c5%\nEXTRA_DOCKER_OPTS: --insecure-registry 10.0.0.0/8\nFEATURE_GATES: ExperimentalCriticalPodAnnotation=true\nHPA_USE_REST_CLIENTS: \"false\"\nINSTANCE_PREFIX: gke-tachoi-cluster-4866da88\nKUBE_ADDON_REGISTRY: asia.gcr.io/google_containers\nKUBE_MANIFESTS_TAR_HASH: c0940432742d2102f68266242412e37b0881c958\nKUBE_MANIFESTS_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz\nKUBE_PROXY_TOKEN: 5gRQETqOuI0b0us_TIvCiZ7M_5twdLTwT2z9kwaVWlY=\nKUBELET_CERT: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUMyekNDQWNPZ0F3SUJBZ0lRU1c5aVl3cUlrMVpiT3UyZ2JrRVlQREFOQmdrcWhraUc5dzBCQVFzRkFEQXYKTVMwd0t3WURWUVFERXlSaVpEYzJPRGt4WXkwNFlqQmlMVFF4WldZdE9EVmtZeTB4WVRsbFlXRTJORGhpWldJdwpIaGNOTVRnd01UQTBNREl6TURJNVdoY05Nak13TVRBek1ESXpNREk1V2pBU01SQXdEZ1lEVlFRREV3ZHJkV0psCmJHVjBNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTBic09JSzEwa0dtN0s3QlgKb25uMXJPWStMVThENEs5V0hJa0doM1RsaDNteERUYkZ3dXQyUkxmeFpmSWZldHg4YmFGZmtOVCsvQ2hLWEsraApqWXdlWjFsV0JBdzljdTJuQ3JBOHJad3NaRm9tM2R3K0poczJnbU9kcWc0VXhkaUN6bWo1ZFk4MHROSzRDQ1lICit0bmp1azRGUWU5SVRMeTVEMGVLd0V0RVVUalhhRGd1OGxibGxiNmhSU2Y3bHVsM0kzQzBMNFpQRElpSVB4SnkKNXhpVU43cUc0WTFBWFNxcW53YkMrbVJ6QVEwK1Z5SFVFWHVhTUo3YVpnNGRyY2JKZkEyZWUrWjlDQXJLNkRQSgoxS2tIMG1FV1NzS0pGWENOdFpjUmpnM0V2a05sYzE1bnNFOWMvcVpxWWowM1FCTEl0M0JqNzFVUitBYjlVY0w5CkV6eThtUUlEQVFBQm94QXdEakFNQmdOVkhSTUJBZjhFQWpBQU1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQVEKdjRvZWhjS1FwK3NwenllL0pTaTY0eXBzRmI5M05JeTZTaVAwWU9QVURibk9pNGUvSnhvZFNKeWgzREtLcjIrTwpDbTQrRWxDNDJnVkx6L2FZbXUxNWRXRVhFZTQrL1IxSW45eG9Hb01qM3VJd1U5MUd5SlltM0dPenlNd2lnUTJzCmlHTjljWE0wblZqUzlBa09uWlZjVE1CMGpNU1BORnlXVnprdzdudkZJTlkxVEM4b3BZUGxJTVBJWlpZVFYvdkEKaGNNcWxwenhLV3lqMUF0bHk0MWdGS0w1clV5ZWllT3p6YkZzUUVyNDZmNjQ3MFBIZ1o2QmdGZm9KcUUyamtvUwpyczJOWWZ6ZmdrRUhFUFBMakVJQlZiclozYm5TREJLdnhBVjAyRVl4bUI0UzVQY05CTC84Zjc3SThlZ2ozTTZiCjh3YVF3U29LeWFxbG9GYVVndWQ0Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\nKUBELET_KEY: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFb2dJQkFBS0NBUUVBMGJzT0lLMTBrR203SzdCWG9ubjFyT1krTFU4RDRLOVdISWtHaDNUbGgzbXhEVGJGCnd1dDJSTGZ4WmZJZmV0eDhiYUZma05UKy9DaEtYSytoall3ZVoxbFdCQXc5Y3UybkNyQThyWndzWkZvbTNkdysKSmhzMmdtT2RxZzRVeGRpQ3ptajVkWTgwdE5LNENDWUgrdG5qdWs0RlFlOUlUTHk1RDBlS3dFdEVVVGpYYURndQo4bGJsbGI2aFJTZjdsdWwzSTNDMEw0WlBESWlJUHhKeTV4aVVON3FHNFkxQVhTcXFud2JDK21SekFRMCtWeUhVCkVYdWFNSjdhWmc0ZHJjYkpmQTJlZStaOUNBcks2RFBKMUtrSDBtRVdTc0tKRlhDTnRaY1JqZzNFdmtObGMxNW4Kc0U5Yy9xWnFZajAzUUJMSXQzQmo3MVVSK0FiOVVjTDlFenk4bVFJREFRQUJBb0lCQUFyekRwWkRLQUpBR3Q3NQppbUczcDAxYkNlVDRxcFdvNGNDRW9Od2lqTGNwY2Naa1ZTZkxmald4T3IrZFIrcDBwMlJiMSs3cVI5T25VTmFNCjdzekNnM1hXMHFoTWNVcldRSEhNNktZUnNMbWVnVWYwN3lPektRSGVySVVMemliVUdtUW5VOXJBMnJvVUJEcWMKcmE3NWdDdWlWaUR1bXFJeStpQmpsa2xheEpyTzJqSk5JYW91WHluRVppNEhKRWhzbUxIaW5kMHBmNUFIOXViTgppcGpwQ21Zd21GaTkzNlEvODJOYkZiVnhyT2toVnFKcmJRWGpKZHRFa0RtQXlYc2NYZWg3WnF0RGxVRkgxRGZjCmduc1RnKzFjc3hKbm1LcTJleFJQdUcwd1gzYWZwejZrUkREN1l5VkJSYXIwL296bWU5aDgxOHJNaXJtVHdvWHIKWmRtaTRmOENnWUVBNkJPOVhQcXRwOEdDdDZsUkNoeS9qQ1I0WFNQMXFMVXBTbE1ncTc2VHBHVm5mNGw2TkpoSwpXNDVuWmptOThIa3FNeFZYdFBhaTZoWW1UOFJyOWVzSlBpNnBEakZOMFlFZVVSS2M3eXVNaU9Dc1FCNllwSVl1CnZuNWl2UnA5VlFxcHVRc0RQaDRlOFZ1d25VNnQxcCtIT3QxaE1tZ3JVU05UbFc3KzdqU1ZrTjhDZ1lFQTUxbWUKTFBhNUhYNzRpa3JTWkxKVGIwZmxzT0ppNnRaMEZhWGcvUFZMUTVxVlI2bzJHN3Z0bmQycjQ5YjBxOWkyV3lXQQpzR0pBRW4vU1p1L1NDcnpnMjdWeUdFMjRVV0RDUFZQTGs4eDI2cklQeVZVNlQ0Zk5KRVBtekN2NXZFZjJLWHg3CmJEZk1ySzdKdkwrUHRxM2NWNlZvbnZyL2x2ODgyQzIrRFY3cWlZY0NnWUFvS3RwNGtFNmtIV01SaExXcENXYkIKeThJbFpNYnRCMFg1UGtBR1dicldGbEwraVAza3dvTUVLN2FMdyt5ekJWV2ZkODh4WEFyQWQwcjBQV3Z1S1ZyMQpMMEJGVzVVN2NKeWRyWm9KNzBDb3BESkwrcit5b2lMUEI3THhSZmR4VTZJaWk5eG8wTy9NR0hHT0dJTVFCWlp6ClFzUEM1TEt5bldtbkVJb0JFb3JjZ3dLQmdCWCs4RW9JSHl1TndlV3NIWHJUZFpsVDlhT3Vzb2J2WXRRWUZGOFkKbDFKVEpUUk9HNXpoYmtNZksxT2JRV0lCVmIwdXdLQ0VodUQ3WkM3RFNHNGE3U29XZzBXS1JpYitreGt2bVdCeApCVEZsUXBqNjBITjFUdXpPdytmUG1vdnJMNTFjSjRQdmZqZEEydzltQ3l6c05OSGtlU0Q4YmthVjk5djU1V0x5CkRreUxBb0dBUnZERVBWQUh2d3pMU1Zyc2tOWWppR2VncG1mVnh6UVdOQUVsWlltWXJ2M1BzTWtTcS9MRnZnNEcKS3Zzd1k5a2pCbm9vTHN1eGVtRGRLVmw5MDNKTy9WQ3JVaVRJVjJsRDlrTk9EeGl6cUZjekladUY3UE5sZ2k0ZQp6THBCQ1E5Q1hYYVRBU0pHeU42enM4QVBVNVhIZVVDLzNXckVQanBOZjFLZldtTFp3MDQ9Ci0tLS0tRU5EIFJTQSBQUklWQVRFIEtFWS0tLS0tCg==\nKUBELET_TEST_ARGS: --docker-disable-shared-pid --kube-reserved=cpu=60m,memory=960Mi\nKUBERNETES_MASTER: \"false\"\nKUBERNETES_MASTER_NAME: 35.201.28.223\nLOGGING_DESTINATION: gcp\nNETWORK_PROVIDER: kubenet\nNODE_LABELS: beta.kubernetes.io/fluentd-ds-ready=true,cloud.google.com/gke-nodepool=default-pool\nNODE_LOCAL_SSDS_EXT: \"\"\nNODE_PROBLEM_DETECTOR_TOKEN: BXhTLGIjOH_1PMvnEDMTJgrbxWg_chQruMHYDpFTtCc=\nSALT_TAR_HASH: 754852fefa25d0c9d9ec499afab62605c97b6449\nSALT_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-salt.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-salt.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-salt.tar.gz\nSERVER_BINARY_TAR_HASH: 26c86bce55e2d139168d626232eabfa3a776b28b\nSERVER_BINARY_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz\nSERVICE_CLUSTER_IP_RANGE: 10.51.240.0/20\nZONE: australia-southeast1-a\n" + }, + { + "key": "user-data", + "value": "#cloud-config\n\nwrite_files:\n - path: /etc/systemd/system/kube-node-installation.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Download and install k8s binaries and configurations\n After=network-online.target\n\n [Service]\n Type=oneshot\n RemainAfterExit=yes\n ExecStartPre=/bin/mkdir -p /home/kubernetes/bin\n ExecStartPre=/bin/mount --bind /home/kubernetes/bin /home/kubernetes/bin\n ExecStartPre=/bin/mount -o remount,exec /home/kubernetes/bin\n ExecStartPre=/usr/bin/curl --fail --retry 5 --retry-delay 3 --silent --show-error\t-H \"X-Google-Metadata-Request: True\" -o /home/kubernetes/bin/configure.sh http://metadata.google.internal/computeMetadata/v1/instance/attributes/configure-sh\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/configure.sh\n ExecStart=/home/kubernetes/bin/configure.sh\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-node-configuration.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Configure kubernetes node\n After=kube-node-installation.service\n\n [Service]\n Type=oneshot\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/configure-helper.sh\n ExecStart=/home/kubernetes/bin/configure-helper.sh\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-docker-monitor.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes health monitoring for docker\n After=kube-node-configuration.service\n\n [Service]\n Restart=always\n RestartSec=10\n RemainAfterExit=yes\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh\n ExecStart=/home/kubernetes/bin/health-monitor.sh docker\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kubelet-monitor.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes health monitoring for kubelet\n After=kube-node-configuration.service\n\n [Service]\n Restart=always\n RestartSec=10\n RemainAfterExit=yes\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh\n ExecStart=/home/kubernetes/bin/health-monitor.sh kubelet\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-logrotate.timer\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Hourly kube-logrotate invocation\n\n [Timer]\n OnCalendar=hourly\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-logrotate.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes log rotation\n After=kube-node-configuration.service\n\n [Service]\n Type=oneshot\n ExecStart=-/usr/sbin/logrotate /etc/logrotate.conf\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kubernetes.target\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes\n\n [Install]\n WantedBy=multi-user.target\n\nruncmd:\n - systemctl daemon-reload\n - systemctl enable kube-node-installation.service\n - systemctl enable kube-node-configuration.service\n - systemctl enable kube-docker-monitor.service\n - systemctl enable kubelet-monitor.service\n - systemctl enable kube-logrotate.timer\n - systemctl enable kube-logrotate.service\n - systemctl enable kubernetes.target\n - systemctl start kubernetes.target\n" + }, + { + "key": "gci-update-strategy", + "value": "update_disabled" + }, + { + "key": "gci-ensure-gke-docker", + "value": "true" + }, + { + "key": "configure-sh", + "value": "#!/bin/bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n# Due to the GCE custom metadata size limit, we split the entire script into two\n# files configure.sh and configure-helper.sh. The functionality of downloading\n# kubernetes configuration, manifests, docker images, and binary files are\n# put in configure.sh, which is uploaded via GCE custom metadata.\n\nset -o errexit\nset -o nounset\nset -o pipefail\n\nfunction set-broken-motd {\n cat \u003e /etc/motd \u003c\u003cEOF\nBroken (or in progress) Kubernetes node setup! Check the cluster initialization status\nusing the following commands.\n\nMaster instance:\n - sudo systemctl status kube-master-installation\n - sudo systemctl status kube-master-configuration\n\nNode instance:\n - sudo systemctl status kube-node-installation\n - sudo systemctl status kube-node-configuration\nEOF\n}\n\nfunction download-kube-env {\n # Fetch kube-env from GCE metadata server.\n local -r tmp_kube_env=\"/tmp/kube-env.yaml\"\n curl --fail --retry 5 --retry-delay 3 --silent --show-error \\\n -H \"X-Google-Metadata-Request: True\" \\\n -o \"${tmp_kube_env}\" \\\n http://metadata.google.internal/computeMetadata/v1/instance/attributes/kube-env\n # Convert the yaml format file into a shell-style file.\n eval $(python -c '''\nimport pipes,sys,yaml\nfor k,v in yaml.load(sys.stdin).iteritems():\n print(\"readonly {var}={value}\".format(var = k, value = pipes.quote(str(v))))\n''' \u003c \"${tmp_kube_env}\" \u003e \"${KUBE_HOME}/kube-env\")\n rm -f \"${tmp_kube_env}\"\n}\n\nfunction download-kube-master-certs {\n # Fetch kube-env from GCE metadata server.\n local -r tmp_kube_master_certs=\"/tmp/kube-master-certs.yaml\"\n curl --fail --retry 5 --retry-delay 3 --silent --show-error \\\n -H \"X-Google-Metadata-Request: True\" \\\n -o \"${tmp_kube_master_certs}\" \\\n http://metadata.google.internal/computeMetadata/v1/instance/attributes/kube-master-certs\n # Convert the yaml format file into a shell-style file.\n eval $(python -c '''\nimport pipes,sys,yaml\nfor k,v in yaml.load(sys.stdin).iteritems():\n print(\"readonly {var}={value}\".format(var = k, value = pipes.quote(str(v))))\n''' \u003c \"${tmp_kube_master_certs}\" \u003e \"${KUBE_HOME}/kube-master-certs\")\n rm -f \"${tmp_kube_master_certs}\"\n}\n\nfunction validate-hash {\n local -r file=\"$1\"\n local -r expected=\"$2\"\n\n actual=$(sha1sum ${file} | awk '{ print $1 }') || true\n if [[ \"${actual}\" != \"${expected}\" ]]; then\n echo \"== ${file} corrupted, sha1 ${actual} doesn't match expected ${expected} ==\"\n return 1\n fi\n}\n\n# Retry a download until we get it. Takes a hash and a set of URLs.\n#\n# $1 is the sha1 of the URL. Can be \"\" if the sha1 is unknown.\n# $2+ are the URLs to download.\nfunction download-or-bust {\n local -r hash=\"$1\"\n shift 1\n\n local -r urls=( $* )\n while true; do\n for url in \"${urls[@]}\"; do\n local file=\"${url##*/}\"\n rm -f \"${file}\"\n if ! curl -f --ipv4 -Lo \"${file}\" --connect-timeout 20 --max-time 300 --retry 6 --retry-delay 10 \"${url}\"; then\n echo \"== Failed to download ${url}. Retrying. ==\"\n elif [[ -n \"${hash}\" ]] && ! validate-hash \"${file}\" \"${hash}\"; then\n echo \"== Hash validation of ${url} failed. Retrying. ==\"\n else\n if [[ -n \"${hash}\" ]]; then\n echo \"== Downloaded ${url} (SHA1 = ${hash}) ==\"\n else\n echo \"== Downloaded ${url} ==\"\n fi\n return\n fi\n done\n done\n}\n\nfunction split-commas {\n echo $1 | tr \",\" \"\\n\"\n}\n\nfunction install-gci-mounter-tools {\n CONTAINERIZED_MOUNTER_HOME=\"${KUBE_HOME}/containerized_mounter\"\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}\"\n chmod a+x \"${CONTAINERIZED_MOUNTER_HOME}\"\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}/rootfs\"\n local -r mounter_tar_sha=\"8003b798cf33c7f91320cd6ee5cec4fa22244571\"\n download-or-bust \"${mounter_tar_sha}\" \"https://storage.googleapis.com/kubernetes-release/gci-mounter/mounter.tar\"\n cp \"${dst_dir}/kubernetes/gci-trusty/gci-mounter\" \"${CONTAINERIZED_MOUNTER_HOME}/mounter\"\n chmod a+x \"${CONTAINERIZED_MOUNTER_HOME}/mounter\"\n mv \"${KUBE_HOME}/mounter.tar\" /tmp/mounter.tar\n tar xvf /tmp/mounter.tar -C \"${CONTAINERIZED_MOUNTER_HOME}/rootfs\"\n rm /tmp/mounter.tar\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}/rootfs/var/lib/kubelet\"\n}\n\n# Install node problem detector binary.\nfunction install-node-problem-detector {\n if [[ -n \"${NODE_PROBLEM_DETECTOR_VERSION:-}\" ]]; then\n local -r npd_version=\"${NODE_PROBLEM_DETECTOR_VERSION}\"\n local -r npd_sha1=\"${NODE_PROBLEM_DETECTOR_TAR_HASH}\"\n else\n local -r npd_version=\"v0.4.1\"\n local -r npd_sha1=\"a57a3fe64cab8a18ec654f5cef0aec59dae62568\"\n fi\n local -r npd_release_path=\"https://storage.googleapis.com/kubernetes-release\"\n local -r npd_tar=\"node-problem-detector-${npd_version}.tar.gz\"\n download-or-bust \"${npd_sha1}\" \"${npd_release_path}/node-problem-detector/${npd_tar}\"\n local -r npd_dir=\"${KUBE_HOME}/node-problem-detector\"\n mkdir -p \"${npd_dir}\"\n tar xzf \"${KUBE_HOME}/${npd_tar}\" -C \"${npd_dir}\" --overwrite\n mv \"${npd_dir}/bin\"/* \"${KUBE_HOME}/bin\"\n chmod a+x \"${KUBE_HOME}/bin/node-problem-detector\"\n rmdir \"${npd_dir}/bin\"\n rm -f \"${KUBE_HOME}/${npd_tar}\"\n}\n\n# Downloads kubernetes binaries and kube-system manifest tarball, unpacks them,\n# and places them into suitable directories. Files are placed in /home/kubernetes.\nfunction install-kube-binary-config {\n cd \"${KUBE_HOME}\"\n local -r server_binary_tar_urls=( $(split-commas \"${SERVER_BINARY_TAR_URL}\") )\n local -r server_binary_tar=\"${server_binary_tar_urls[0]##*/}\"\n if [[ -n \"${SERVER_BINARY_TAR_HASH:-}\" ]]; then\n local -r server_binary_tar_hash=\"${SERVER_BINARY_TAR_HASH}\"\n else\n echo \"Downloading binary release sha1 (not found in env)\"\n download-or-bust \"\" \"${server_binary_tar_urls[@]/.tar.gz/.tar.gz.sha1}\"\n local -r server_binary_tar_hash=$(cat \"${server_binary_tar}.sha1\")\n fi\n echo \"Downloading binary release tar\"\n download-or-bust \"${server_binary_tar_hash}\" \"${server_binary_tar_urls[@]}\"\n tar xzf \"${KUBE_HOME}/${server_binary_tar}\" -C \"${KUBE_HOME}\" --overwrite\n # Copy docker_tag and image files to ${KUBE_HOME}/kube-docker-files.\n src_dir=\"${KUBE_HOME}/kubernetes/server/bin\"\n dst_dir=\"${KUBE_HOME}/kube-docker-files\"\n mkdir -p \"${dst_dir}\"\n cp \"${src_dir}/\"*.docker_tag \"${dst_dir}\"\n if [[ \"${KUBERNETES_MASTER:-}\" == \"false\" ]]; then\n cp \"${src_dir}/kube-proxy.tar\" \"${dst_dir}\"\n if [[ \"${ENABLE_NODE_PROBLEM_DETECTOR:-}\" == \"standalone\" ]]; then\n install-node-problem-detector\n fi\n else\n cp \"${src_dir}/kube-apiserver.tar\" \"${dst_dir}\"\n cp \"${src_dir}/kube-controller-manager.tar\" \"${dst_dir}\"\n cp \"${src_dir}/kube-scheduler.tar\" \"${dst_dir}\"\n cp -r \"${KUBE_HOME}/kubernetes/addons\" \"${dst_dir}\"\n fi\n local -r kube_bin=\"${KUBE_HOME}/bin\"\n mv \"${src_dir}/kubelet\" \"${kube_bin}\"\n mv \"${src_dir}/kubectl\" \"${kube_bin}\"\n\n if [[ \"${NETWORK_PROVIDER:-}\" == \"kubenet\" ]] || \\\n [[ \"${NETWORK_PROVIDER:-}\" == \"cni\" ]]; then\n #TODO(andyzheng0831): We should make the cni version number as a k8s env variable.\n local -r cni_tar=\"cni-0799f5732f2a11b329d9e3d51b9c8f2e3759f2ff.tar.gz\"\n local -r cni_sha1=\"1d9788b0f5420e1a219aad2cb8681823fc515e7c\"\n download-or-bust \"${cni_sha1}\" \"https://storage.googleapis.com/kubernetes-release/network-plugins/${cni_tar}\"\n local -r cni_dir=\"${KUBE_HOME}/cni\"\n mkdir -p \"${cni_dir}\"\n tar xzf \"${KUBE_HOME}/${cni_tar}\" -C \"${cni_dir}\" --overwrite\n mv \"${cni_dir}/bin\"/* \"${kube_bin}\"\n rmdir \"${cni_dir}/bin\"\n rm -f \"${KUBE_HOME}/${cni_tar}\"\n fi\n\n mv \"${KUBE_HOME}/kubernetes/LICENSES\" \"${KUBE_HOME}\"\n mv \"${KUBE_HOME}/kubernetes/kubernetes-src.tar.gz\" \"${KUBE_HOME}\"\n\n # Put kube-system pods manifests in ${KUBE_HOME}/kube-manifests/.\n dst_dir=\"${KUBE_HOME}/kube-manifests\"\n mkdir -p \"${dst_dir}\"\n local -r manifests_tar_urls=( $(split-commas \"${KUBE_MANIFESTS_TAR_URL}\") )\n local -r manifests_tar=\"${manifests_tar_urls[0]##*/}\"\n if [ -n \"${KUBE_MANIFESTS_TAR_HASH:-}\" ]; then\n local -r manifests_tar_hash=\"${KUBE_MANIFESTS_TAR_HASH}\"\n else\n echo \"Downloading k8s manifests sha1 (not found in env)\"\n download-or-bust \"\" \"${manifests_tar_urls[@]/.tar.gz/.tar.gz.sha1}\"\n local -r manifests_tar_hash=$(cat \"${manifests_tar}.sha1\")\n fi\n echo \"Downloading k8s manifests tar\"\n download-or-bust \"${manifests_tar_hash}\" \"${manifests_tar_urls[@]}\"\n tar xzf \"${KUBE_HOME}/${manifests_tar}\" -C \"${dst_dir}\" --overwrite\n local -r kube_addon_registry=\"${KUBE_ADDON_REGISTRY:-gcr.io/google_containers}\"\n if [[ \"${kube_addon_registry}\" != \"gcr.io/google_containers\" ]]; then\n find \"${dst_dir}\" -name \\*.yaml -or -name \\*.yaml.in | \\\n xargs sed -ri \"s@(image:\\s.*)gcr.io/google_containers@\\1${kube_addon_registry}@\"\n find \"${dst_dir}\" -name \\*.manifest -or -name \\*.json | \\\n xargs sed -ri \"s@(image\\\":\\s+\\\")gcr.io/google_containers@\\1${kube_addon_registry}@\"\n fi\n cp \"${dst_dir}/kubernetes/gci-trusty/gci-configure-helper.sh\" \"${KUBE_HOME}/bin/configure-helper.sh\"\n cp \"${dst_dir}/kubernetes/gci-trusty/health-monitor.sh\" \"${KUBE_HOME}/bin/health-monitor.sh\"\n chmod -R 755 \"${kube_bin}\"\n\n # Install gci mounter related artifacts to allow mounting storage volumes in GCI\n install-gci-mounter-tools\n \n # Clean up.\n rm -rf \"${KUBE_HOME}/kubernetes\"\n rm -f \"${KUBE_HOME}/${server_binary_tar}\"\n rm -f \"${KUBE_HOME}/${server_binary_tar}.sha1\"\n rm -f \"${KUBE_HOME}/${manifests_tar}\"\n rm -f \"${KUBE_HOME}/${manifests_tar}.sha1\"\n}\n\n######### Main Function ##########\necho \"Start to install kubernetes files\"\nset-broken-motd\nKUBE_HOME=\"/home/kubernetes\"\ndownload-kube-env\nsource \"${KUBE_HOME}/kube-env\"\nif [[ \"${KUBERNETES_MASTER:-}\" == \"true\" ]]; then\n download-kube-master-certs\nfi\ninstall-kube-binary-config\necho \"Done for installing kubernetes files\"\n\n" + }, + { + "key": "cluster-name", + "value": "tachoi-cluster" + }, + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/gke-tachoi-cluster-default-pool-8f292535" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/australia-southeast1-a/instanceGroupManagers/gke-tachoi-cluster-default-pool-8f292535-grp" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/compute", + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/instances/gke-tachoi-cluster-default-pool-8f292535-f1gn", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Broadwell", + "labels": { + "goog-gke-node": "" + }, + "labelFingerprint": "2ixRno2sGuM=", + "startRestricted": false, + "deletionProtection": false + } + ] + }, + "zones/australia-southeast1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/australia-southeast1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/australia-southeast1-b" + } + ] + } + }, + "zones/europe-west2-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west2-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west2-a" + } + ] + } + }, + "zones/europe-west2-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west2-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west2-b" + } + ] + } + }, + "zones/europe-west2-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west2-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west2-c" + } + ] + } + }, + "zones/europe-west3-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west3-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west3-c" + } + ] + } + }, + "zones/europe-west3-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west3-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west3-a" + } + ] + } + }, + "zones/europe-west3-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west3-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west3-b" + } + ] + } + }, + "zones/southamerica-east1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/southamerica-east1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/southamerica-east1-a" + } + ] + } + }, + "zones/southamerica-east1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/southamerica-east1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/southamerica-east1-b" + } + ] + } + }, + "zones/southamerica-east1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/southamerica-east1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/southamerica-east1-c" + } + ] + } + }, + "zones/asia-south1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-south1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-south1-b" + } + ] + } + }, + "zones/asia-south1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-south1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-south1-a" + } + ] + } + }, + "zones/asia-south1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-south1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-south1-c" + } + ] + } + }, + "zones/northamerica-northeast1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/northamerica-northeast1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/northamerica-northeast1-a" + } + ] + } + }, + "zones/northamerica-northeast1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/northamerica-northeast1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/northamerica-northeast1-b" + } + ] + } + }, + "zones/northamerica-northeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/northamerica-northeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/northamerica-northeast1-c" + } + ] + } + }, + "zones/europe-west4-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west4-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west4-c" + } + ] + } + }, + "zones/europe-west4-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west4-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west4-b" + } + ] + } + }, + "zones/europe-west4-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west4-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west4-a" + } + ] + } + } + }, + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/instances" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:03 GMT + recorded_at: Fri, 11 May 2018 14:32:56 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/asia-northeast1/forwardingRules + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:56 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:03 GMT + - Fri, 11 May 2018 14:32:56 GMT Date: - - Fri, 02 Jun 2017 19:26:03 GMT + - Fri, 11 May 2018 14:32:56 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/dztM0kwCNwLaLlDqh5qTmY7D_3g"' + - '"6qBluJYOKWukV2ZEEb8IQsYoJQA=/UYMrbt21JC2OIhwzFx5ZiAAplRE="' Vary: - Origin - X-Origin @@ -7515,52 +61810,207 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAK2OMRKCMBAAe17BxFa4yWDFG6j8QYQjnMQkk7uQwvHvImNj - b7+zu8+qViv5SfW1GsMjZsHTHFIxaSJvr9nhQCzqvGN0QDGFO47CMNJGrpF8 - w0brrtMXSGgpeAbDZBofkixoWDT8+viQMbp5IL9+lItI5B6glNLaEKxDE4nb - fQe+S7Bp+EO4elVvQzF7yvAAAAA= + encoding: UTF-8 + string: | + { + "kind": "compute#project", + "id": "5878269445375168496", + "creationTimestamp": "2016-05-11T06:18:23.203-07:00", + "name": "GOOGLE_PROJECT", + "commonInstanceMetadata": { + "kind": "compute#metadata", + "fingerprint": "gVyMtWkP_RM=", + "items": [ + { + "key": "ssh-keys", + "value": "cfmeqe:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAGRvVUi+HmIzvbnOC3SBfFhQjORn8sC7sQYpSBEY+oTlCsoHDte4M1x7dejfowsw6rT5UDi5uHt3YG/iftQ19XX8MLTHsVFREUs8blFv6a9S5cebwExXk4fDNmN1qT2V0L0wPtEKhD29onZ7SabqhrSys1GT9a39PTZEeVkJp+Fx7Gu0jMgA/fucB9MP0UQd6jc/HMOusTlPdiGfPy0HKB43OFhm9sq0hkyEud3CIhRVkAuUUwpWT48jfTSrjrjfY5YmLLYLJl0OoSowVtciOG5tgWUNY9zFgvA0GZznj/HaDXvPpDzGdc5pre4uNae4v8RZkUfO7srwQj16VfiZSXk= google-ssh {\"userName\":\"cfmeqe@gmail.com\",\"expireOn\":\"2018-04-27T17:49:57+0000\"}\ncfmeqe:ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCmB9El1RtijUfjjA/WxSOIQRv398EKNbLHmxYCzprxdBJ+tSaRnUxIimrGAQAZmsfVQnfEwVDOBsyxknSpbYR0= google-ssh {\"userName\":\"cfmeqe@gmail.com\",\"expireOn\":\"2018-04-27T17:49:54+0000\"}\njvlcek:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDC4RNep4ccoUPSHoLxoGbTXQ8BC0KoqIwA0F2Dk28nw4id6wQji1Nbhs5DpJVdTkVcXPjtiiF9e+V0tp0KoI/hplPClIRxMIlboSb267OsENfObMFF0Osmn+/t6UOJdCFU/FoSj4hQmUu+SiEKcUDvfZdmUiDCSppUoSAZ5CWoDH8b3Snf2QE4tltNP29R87TKiN0Be5YS5hONAgXvPRMKO8DgWkhIbqOOzXcbMXC1fxXozY83VtkfY46BGKLJCtf3VL3c8LjSrXcvCuwo+Q/T3/763DMreAb9hpcMO8qL8oQL93hmAEY8GQB8DMxbD/pbrq7jEaFuqewwLJ9ooIs/ jvlcek@cs-6000-devshell-vm-8238f153-c4f2-426d-8efc-7ca12eff9f56\ncfmeqe:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCpbh5rwsq9j7pa04ywWQrD6kWTJuADHptfuUMfOk4yC52Sbfr5HbTwRlug3n5YQhkF9fdIvBZ6BUbNzEKmL2m7yugRmyOvbIEEKuLROGWMvdwLF/BzjkxlFlAfdL+owj91xnDmvjnHGSS1DHsgpHrmCmOquy4iEnL+JpyHJaYZwSsDLyhOPC3AVmSqUk/OpLDKagyNh0Ha427Tjk0tsKntC2EbdzsLt6WXFQBR85EGqHW3n+XcHagQWA0FLzPVU0PsKqZnydueWgIx2KxRiqTme24whgUxxML1qv90O4LatpRmjeUCWxvPgMgYKRopIrrIDNlqxly4jWvei51Duo5h cfmeqe@cs-6000-devshell-vm-c3058b0d-28c3-4587-9efd-7fbfe2db9d18\ntachoi:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDGx/l95ev7rCQ++p3IExr+iDt/XwF3gjwqoyLk88fO+9N0+dtxpoJeJU6xzVjv9+5Bet3y/nNFrQ9838atph6eBhJGB5k+MPL3HurFo6AfwctK7NSp+vZ1XxNe8beKD3yX9L4nT2oK9/RnN8f63NoP2Kb9+2x2T+RiO/u6jpP3QkjIPhspGI0U4SC5bJGIyKuS8xL1P/lMZgsZYYk8ayn2yXHina9yO8srZvTo/jGDQF7EtKrhBVqtjpa9h7Wl91sMxBJEUQ/Lj2/UFWbSO703obUf0nxjOHsDhoZeL56DQKlJGFDmd/UjDEg7Qs+rZ6kp92uVysMMwETEmcIhfpJb tachoi@cs-6000-devshell-vm-0142c2ff-228e-4109-901f-0953c93d6253\nnchugh:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDOznpYGZlpvPf2t/tMGa4AkH1ror3rauYRparIBwC/i5lYHqP296W0qRl/vfETbgADQrbqSXWe5eqjISjtr54GjXKCo9DpSLiFGfNgP29IiB68B3kfRD+rTQgsLbnjm8cDiBDPAdETtjhoxRZf3ZTyGXM+cd6lbC2e+VEkAEvaBEVL83q9b4mGoMZXqYbxpSUwSuADAAkfFiVVcaTML7UJwNgIsE1t17oHi/Ua9enXsZwxR8AbErA8ptcPOWTyhtDwSUbobqbBET7bZxU82pGMFwZgzpY872JsAvM60/FGD1NhAD76VRRAKkz928QFSWSiNr8AfBowYGAHKDNaVe/R root@nchugh.pnq.csb\n" + }, + { + "key": "sshKeys", + "value": "gke-4866da88e59a4051ce37:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmS6zRXDkSCWtW5ncuvDIHlS2RtuDfcC5PtzeCY4oYynFJAChQYvABAmu9fWqqsz7Cln32vAx/M+tSPvwGUHjFzz/Tvc/HcQiPWYZ7f6MzNZ7+JQ6A4j6k27P8izmJBhK/8AL/RRTg97WgvEoohP4Qn1zIZvMo5i3Qj0J+IGhtl6MqQw8Hov2HoOMFt42A04P8cOL8nrrJtJGLoH6yZi2m1+pAxQ8bO270R1RtngPDZcbWvBTwK+JKPsVksOrx7vc1NJFmWzz3YSOgMQJW9PyH3WtXe1At2JiG4N2PUCUkJQ7Hf9hjnmntwnxEL9o9iJeTfBVNBVekq3IWQEwFwn7j gke-4866da88e59a4051ce37@gke-4866da88e59a4051ce37" + } + ] + }, + "quotas": [ + { + "metric": "SNAPSHOTS", + "limit": 1000.0, + "usage": 1.0 + }, + { + "metric": "NETWORKS", + "limit": 5.0, + "usage": 3.0 + }, + { + "metric": "FIREWALLS", + "limit": 100.0, + "usage": 11.0 + }, + { + "metric": "IMAGES", + "limit": 100.0, + "usage": 60.0 + }, + { + "metric": "STATIC_ADDRESSES", + "limit": 8.0, + "usage": 0.0 + }, + { + "metric": "ROUTES", + "limit": 200.0, + "usage": 24.0 + }, + { + "metric": "FORWARDING_RULES", + "limit": 15.0, + "usage": 4.0 + }, + { + "metric": "TARGET_POOLS", + "limit": 50.0, + "usage": 3.0 + }, + { + "metric": "HEALTH_CHECKS", + "limit": 50.0, + "usage": 2.0 + }, + { + "metric": "IN_USE_ADDRESSES", + "limit": 23.0, + "usage": 4.0 + }, + { + "metric": "TARGET_INSTANCES", + "limit": 50.0, + "usage": 0.0 + }, + { + "metric": "TARGET_HTTP_PROXIES", + "limit": 10.0, + "usage": 2.0 + }, + { + "metric": "URL_MAPS", + "limit": 10.0, + "usage": 2.0 + }, + { + "metric": "BACKEND_SERVICES", + "limit": 5.0, + "usage": 2.0 + }, + { + "metric": "INSTANCE_TEMPLATES", + "limit": 100.0, + "usage": 3.0 + }, + { + "metric": "TARGET_VPN_GATEWAYS", + "limit": 5.0, + "usage": 0.0 + }, + { + "metric": "VPN_TUNNELS", + "limit": 10.0, + "usage": 0.0 + }, + { + "metric": "BACKEND_BUCKETS", + "limit": 3.0, + "usage": 1.0 + }, + { + "metric": "ROUTERS", + "limit": 10.0, + "usage": 1.0 + }, + { + "metric": "TARGET_SSL_PROXIES", + "limit": 10.0, + "usage": 0.0 + }, + { + "metric": "TARGET_HTTPS_PROXIES", + "limit": 10.0, + "usage": 0.0 + }, + { + "metric": "SSL_CERTIFICATES", + "limit": 10.0, + "usage": 0.0 + }, + { + "metric": "SUBNETWORKS", + "limit": 100.0, + "usage": 18.0 + }, + { + "metric": "TARGET_TCP_PROXIES", + "limit": 10.0, + "usage": 0.0 + }, + { + "metric": "SECURITY_POLICIES", + "limit": 10.0, + "usage": 0.0 + }, + { + "metric": "SECURITY_POLICY_RULES", + "limit": 100.0, + "usage": 0.0 + }, + { + "metric": "INTERCONNECTS", + "limit": 6.0, + "usage": 0.0 + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT", + "defaultServiceAccount": "135776510666-compute@developer.gserviceaccount.com", + "xpnProjectStatus": "UNSPECIFIED_XPN_PROJECT_STATUS" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:03 GMT + recorded_at: Fri, 11 May 2018 14:32:56 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/asia-southeast1/forwardingRules + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/custom-1-1024 body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:32:56 GMT + Authorization: + - Bearer ya29.c.EmC4BdUk3rY5ZSoqTl2cRs6iiC5bLmCCcWMh3VPJ9Rj6F9iFB64oPIPXel9NcloXD0_BSRCyGqHVfnhvndbJoCeapl_ZsIURiI4IQTWARmoJ2oe1f5PrVVClOKVP8jGh6dk + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:03 GMT + - Fri, 11 May 2018 14:32:57 GMT Date: - - Fri, 02 Jun 2017 19:26:03 GMT + - Fri, 11 May 2018 14:32:57 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/Wa1KbDmdPyfd2eVsS2addWUXas4"' Vary: - Origin - X-Origin @@ -7577,37 +62027,41 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAK2OMRKCMBAAe17BxFa4yWDFG6j8QYQjnMQkk7uQwvHvImNj - b7+zu8+qViv5SfW1GsMjZsHTHFIxaSJvr9nhQCzqvGN0QDGFO47CMNJGrpF8 - w0brrtMXSGgpeAbDZBoOWRY0LBp+fXzIGN08kF8/ykUkcg9QSmltCNahicTt - vgPfJdg0/CFcvao3c0OClPAAAAA= + encoding: UTF-8 + string: | + { + "kind": "compute#machineType", + "id": "4294968320", + "name": "custom-1-1024", + "description": "Custom created machine type.", + "guestCpus": 1, + "memoryMb": 1024, + "maximumPersistentDisks": 4, + "maximumPersistentDisksSizeGb": "3072", + "zone": "us-central1-a", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/custom-1-1024", + "isSharedCpu": false + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:03 GMT + recorded_at: Fri, 11 May 2018 14:32:57 GMT - request: - method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/europe-west1/forwardingRules + method: post + uri: https://www.googleapis.com/oauth2/v3/token body: - encoding: UTF-8 - string: '' + encoding: ASCII-8BIT + string: grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Ajwt-bearer&assertion=eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpc3MiOiIxMzU3NzY1MTA2NjYtY29tcHV0ZUBkZXZlbG9wZXIuZ3NlcnZpY2VhY2NvdW50LmNvbSIsImF1ZCI6Imh0dHBzOi8vd3d3Lmdvb2dsZWFwaXMuY29tL29hdXRoMi92My90b2tlbiIsImV4cCI6MTUyNjA0OTI4OCwiaWF0IjoxNTI2MDQ5MTY4LCJzY29wZSI6Imh0dHBzOi8vd3d3Lmdvb2dsZWFwaXMuY29tL2F1dGgvY29tcHV0ZSBodHRwczovL3d3dy5nb29nbGVhcGlzLmNvbS9hdXRoL2RldnN0b3JhZ2UucmVhZF93cml0ZSBodHRwczovL3d3dy5nb29nbGVhcGlzLmNvbS9hdXRoL25kZXYuY2xvdWRtYW4gaHR0cHM6Ly93d3cuZ29vZ2xlYXBpcy5jb20vYXV0aC9jbG91ZC1wbGF0Zm9ybSJ9.sO6nQVSvwc16Kr0CvSHtaFdz9r_0glves046b-aZM6lx7iZ0VZB4nfOU9qOxQhyhAy-g3qNEjqvlUvcF3yVpGyzLKKJ5rzG1Sp7qFu1Ze8XCorsfMZOK6t2PcFE_S6E_TESR0DAqCNsY4fG1NfOeUShxJZ8kKcUjrZLRPBi9n3M2yDfCkxuWf2m-WLWPGR0AZP5OigKNyNwDfj7d6aa4nYDQFqnDqI4L6nZZU5WTCmt0vTNniAiUkK3B-eInR3_-bfu4B4-WHhn1CFH2o9UNf24rWGQcSDHY5fEXjTHm99L1CKiRQzK73jlx9aB1035CenpaX_7PIP_8tCqx-wzB3Q headers: User-Agent: - - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 - (gzip) - Accept-Encoding: - - gzip + - Faraday v0.9.2 Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store + - application/x-www-form-urlencoded + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" response: @@ -7615,21 +62069,19 @@ http_interactions: code: 200 message: OK headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Pragma: + - no-cache Expires: - - Fri, 02 Jun 2017 19:26:04 GMT + - Mon, 01 Jan 1990 00:00:00 GMT Date: - - Fri, 02 Jun 2017 19:26:04 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/5N5jT9Ff6aUNMA3UA-DCtH05B0M"' + - Fri, 11 May 2018 14:33:48 GMT Vary: - Origin - X-Origin Content-Type: - application/json; charset=UTF-8 - Content-Encoding: - - gzip X-Content-Type-Options: - nosniff X-Frame-Options: @@ -7639,52 +62091,54 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOMRKCMBAAe17BxFa4yWDFG6j8gcIRT2Iuk7uQwvHvImNj - bb+zu8+qNguFyfS1GfkRs+Jh5lQuaaLgztnjQKLmuGG0QzHxHUcVGGkl32i+ - YmNt19kTJHTEQQBz4ohNQVELvzLZTYJ+HigsH99NNUoPUEppHbPzeIkk7fYC - 3x9YLfxbrV7VG1odSiHqAAAA + string: | + { + "access_token": "ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY", + "token_type": "Bearer", + "expires_in": 3600 + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:04 GMT + recorded_at: Fri, 11 May 2018 14:33:48 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-central1/forwardingRules + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:48 GMT + Authorization: + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:04 GMT + - Fri, 11 May 2018 14:33:49 GMT Date: - - Fri, 02 Jun 2017 19:26:04 GMT + - Fri, 11 May 2018 14:33:49 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/yM158alTCZrGgPPwTgK2unWL7eA"' + - '"rbtBKTuuBTyhM3sjxbz9SzE0n3M=/tftKEPvbbV1_qRa1WVFQeaCQ_38="' Vary: - Origin - X-Origin @@ -7701,57 +62155,114 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAL1Su07DMBTd8xVRWHFs59lmK6gDUoWikgEJMbiOm5o6cWQ7 - zVDx78RNSgUDiKEM9nDv8Xlc36PjenvelF7melTWbWfYzVaqnqiSN9W6E2zF - tfFuBxg/gVol3xg1GlJ+4AKYbsMAxmGII6hYxWWjYacBZY1RRGD4lUuPRIbV - euB6cVz3OJzfHNhH7lkfp+ksiYM5msVxGgQBQvHUp4oRMxgoeM20IXVr4QHC - CUBzECQFDjOEsxD5CY4ASjOEpocNqZnFbqUEYgMu4kBd1EumqeKtFbDYqTpG - toWdMa3OIOz73q+krAQjLdf+kAhOqeABw79NbxJ5yBdlqZjWp/wo8nEc+ziN - /Dj+RORKGkmlsJDiPp/qrVRmTZrqFC/BCCFg7zOxIapi5lru4UifSyk0HGc7 - 6Womtive7K+m/G3r4I8/KyQp74ggDR0aT3THxm1YPhfL9eNi5Q2gd8d9tZv7 - 38Y95935AG+PSF+iAwAA + encoding: UTF-8 + string: | + { + "kind": "compute#networkList", + "id": "projects/GOOGLE_PROJECT/global/networks", + "items": [ + { + "kind": "compute#network", + "id": "7587328054479720388", + "creationTimestamp": "2016-05-11T06:18:35.147-07:00", + "name": "default", + "description": "Default network for the project", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "autoCreateSubnetworks": true, + "subnetworks": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east4/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/northamerica-northeast1/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-west1/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west1/subnetworks/default-9893b487155177d5", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west2/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/southamerica-east1/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-southeast1/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west3/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west4/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1/subnetworks/default-372dec1aa369576e", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/australia-southeast1/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-south1/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/subnetworks/default-0d01dc41a9f25811", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-northeast1/subnetworks/default" + ], + "routingConfig": { + "routingMode": "REGIONAL" + } + }, + { + "kind": "compute#network", + "id": "7002839308139590219", + "creationTimestamp": "2018-01-18T08:34:44.334-08:00", + "name": "lkhomenk-network", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/lkhomenk-network", + "autoCreateSubnetworks": false, + "subnetworks": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/lkhomenk-subnet" + ], + "routingConfig": { + "routingMode": "REGIONAL" + } + }, + { + "kind": "compute#network", + "id": "7143984852736943806", + "creationTimestamp": "2018-02-15T06:25:21.743-08:00", + "name": "test-tfischer-vpc", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/test-tfischer-vpc", + "autoCreateSubnetworks": false, + "subnetworks": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/test-tfischer-subnet-2", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/test-tfischer-subnet" + ], + "routingConfig": { + "routingMode": "REGIONAL" + } + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:04 GMT + recorded_at: Fri, 11 May 2018 14:33:49 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-east1/forwardingRules + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/subnetworks body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:49 GMT + Authorization: + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:04 GMT + - Fri, 11 May 2018 14:33:49 GMT Date: - - Fri, 02 Jun 2017 19:26:04 GMT + - Fri, 11 May 2018 14:33:49 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/HZazKRHndOtHv8nn0-3FMqSxdFQ"' + - '"FZGwlJLd-pMq91cX8hOMzvvqCXk=/Bo2rnKp1x2cVWzAwoVC3lS9oRRQ="' Vary: - Origin - X-Origin @@ -7768,52 +62279,350 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOMRKCMBAAe17BxFa4yWDFG6j8AYQjnsQkk7uQwvHvImNj - bb+zu8+qViv5WfW1MuERs+BpCamMaSZvr9nhQCzqvGN0QDGFOxphMLSRayRP - 2GjddfoCCS0Fz5C5wZFFw6+IDwujWwby68d1E4ncA5RSWhuCdThG4nb/gO8L - bBr+KVav6g2277FR4gAAAA== + encoding: UTF-8 + string: | + { + "kind": "compute#subnetworkAggregatedList", + "id": "projects/GOOGLE_PROJECT/aggregated/subnetworks", + "items": { + "regions/us-central1": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "8202316587573612507", + "creationTimestamp": "2016-05-11T06:18:44.233-07:00", + "name": "default-175e7dd38602e139", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.128.0.0/20", + "gatewayAddress": "10.128.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "privateIpGoogleAccess": false, + "fingerprint": "8K9WMoMgnlY=" + }, + { + "kind": "compute#subnetwork", + "id": "5279561874794181184", + "creationTimestamp": "2018-01-18T08:34:55.245-08:00", + "name": "lkhomenk-subnet", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/lkhomenk-network", + "ipCidrRange": "192.168.31.0/24", + "gatewayAddress": "192.168.31.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/lkhomenk-subnet", + "privateIpGoogleAccess": false, + "fingerprint": "RCP0QcUerk8=" + }, + { + "kind": "compute#subnetwork", + "id": "525731504218187442", + "creationTimestamp": "2018-02-15T06:25:33.301-08:00", + "name": "test-tfischer-subnet", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/test-tfischer-vpc", + "ipCidrRange": "10.139.0.0/20", + "gatewayAddress": "10.139.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/test-tfischer-subnet", + "privateIpGoogleAccess": false, + "fingerprint": "tFj5tb5zNEg=" + }, + { + "kind": "compute#subnetwork", + "id": "7412737676755347309", + "creationTimestamp": "2018-02-15T06:30:26.712-08:00", + "name": "test-tfischer-subnet-2", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/test-tfischer-vpc", + "ipCidrRange": "10.140.0.0/20", + "gatewayAddress": "10.140.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/test-tfischer-subnet-2", + "privateIpGoogleAccess": false, + "fingerprint": "TH7DyqlMiNs=" + } + ] + }, + "regions/europe-west1": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "8249747509151174619", + "creationTimestamp": "2016-05-11T06:18:44.439-07:00", + "name": "default-9893b487155177d5", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.132.0.0/20", + "gatewayAddress": "10.132.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west1/subnetworks/default-9893b487155177d5", + "privateIpGoogleAccess": false, + "fingerprint": "gFc8vb0Eg74=" + } + ] + }, + "regions/us-west1": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "3712394189059902205", + "creationTimestamp": "2016-07-19T11:40:18.443-07:00", + "name": "default", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.138.0.0/20", + "gatewayAddress": "10.138.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-west1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-west1/subnetworks/default", + "privateIpGoogleAccess": false, + "fingerprint": "rZuhpp67l1s=" + } + ] + }, + "regions/asia-east1": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "596366566524620763", + "creationTimestamp": "2016-05-11T06:18:44.588-07:00", + "name": "default-0d01dc41a9f25811", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.140.0.0/20", + "gatewayAddress": "10.140.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/subnetworks/default-0d01dc41a9f25811", + "privateIpGoogleAccess": false, + "fingerprint": "t9i7-gjvYcg=" + } + ] + }, + "regions/us-east1": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "6935426940356431835", + "creationTimestamp": "2016-05-11T06:18:44.716-07:00", + "name": "default-372dec1aa369576e", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.142.0.0/20", + "gatewayAddress": "10.142.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1/subnetworks/default-372dec1aa369576e", + "privateIpGoogleAccess": false, + "fingerprint": "4elsKLWv7Rc=" + } + ] + }, + "regions/asia-northeast1": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "2968473752765141931", + "creationTimestamp": "2016-10-24T17:54:28.476-07:00", + "name": "default", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.146.0.0/20", + "gatewayAddress": "10.146.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-northeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-northeast1/subnetworks/default", + "privateIpGoogleAccess": false, + "fingerprint": "lMsx9pt-0TQ=" + } + ] + }, + "regions/asia-southeast1": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "4783216444567662779", + "creationTimestamp": "2017-04-12T13:30:12.846-07:00", + "name": "default", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.148.0.0/20", + "gatewayAddress": "10.148.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-southeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-southeast1/subnetworks/default", + "privateIpGoogleAccess": false, + "fingerprint": "T5YaeYFXjvM=" + } + ] + }, + "regions/us-east4": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "3422760020004043574", + "creationTimestamp": "2017-05-09T15:42:33.698-07:00", + "name": "default", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.150.0.0/20", + "gatewayAddress": "10.150.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east4", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east4/subnetworks/default", + "privateIpGoogleAccess": false, + "fingerprint": "SshOnanWBq0=" + } + ] + }, + "regions/australia-southeast1": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "6988650587376353133", + "creationTimestamp": "2017-06-20T17:44:50.578-07:00", + "name": "default", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.152.0.0/20", + "gatewayAddress": "10.152.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/australia-southeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/australia-southeast1/subnetworks/default", + "privateIpGoogleAccess": false, + "fingerprint": "ZUhsUB91RRQ=" + } + ] + }, + "regions/europe-west2": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "3252054423108211538", + "creationTimestamp": "2017-06-07T05:12:45.688-07:00", + "name": "default", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.154.0.0/20", + "gatewayAddress": "10.154.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west2", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west2/subnetworks/default", + "privateIpGoogleAccess": false, + "fingerprint": "uGj0B_C3twk=" + } + ] + }, + "regions/europe-west3": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "5994654825603449726", + "creationTimestamp": "2017-08-02T00:21:53.310-07:00", + "name": "default", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.156.0.0/20", + "gatewayAddress": "10.156.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west3", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west3/subnetworks/default", + "privateIpGoogleAccess": false, + "fingerprint": "EKvWI0T-eFU=" + } + ] + }, + "regions/southamerica-east1": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "4436605501391934334", + "creationTimestamp": "2017-09-05T16:04:49.710-07:00", + "name": "default", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.158.0.0/20", + "gatewayAddress": "10.158.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/southamerica-east1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/southamerica-east1/subnetworks/default", + "privateIpGoogleAccess": false, + "fingerprint": "Wdjqe0oiFjI=" + } + ] + }, + "regions/asia-south1": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "5188997606022603144", + "creationTimestamp": "2017-11-01T07:51:19.995-07:00", + "name": "default", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.160.0.0/20", + "gatewayAddress": "10.160.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-south1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-south1/subnetworks/default", + "privateIpGoogleAccess": false, + "fingerprint": "xS2n-ZmTnfs=" + } + ] + }, + "regions/northamerica-northeast1": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "2338778491412577325", + "creationTimestamp": "2018-01-09T23:37:38.155-08:00", + "name": "default", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.162.0.0/20", + "gatewayAddress": "10.162.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/northamerica-northeast1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/northamerica-northeast1/subnetworks/default", + "privateIpGoogleAccess": false, + "fingerprint": "1aIOPj2Kvc8=" + } + ] + }, + "regions/europe-west4": { + "subnetworks": [ + { + "kind": "compute#subnetwork", + "id": "4168310271745189871", + "creationTimestamp": "2018-01-10T10:18:40.345-08:00", + "name": "default", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "ipCidrRange": "10.164.0.0/20", + "gatewayAddress": "10.164.0.1", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west4", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west4/subnetworks/default", + "privateIpGoogleAccess": false, + "fingerprint": "N8gjvSYGKPU=" + } + ] + } + }, + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/subnetworks" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:04 GMT + recorded_at: Fri, 11 May 2018 14:33:49 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-east4/forwardingRules + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:49 GMT + Authorization: + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:04 GMT + - Fri, 11 May 2018 14:33:49 GMT Date: - - Fri, 02 Jun 2017 19:26:04 GMT + - Fri, 11 May 2018 14:33:49 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/mZS12BSD-EFNafLsMAnW1a0dmjM"' + - '"MavSaqRdV4Rt3wgZgjurj3yXdvw=/FsMIeTW9sR5Orytu2LlzOhMCUHg="' Vary: - Origin - X-Origin @@ -7830,52 +62639,114 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOMRKCMBAAe17BxFa4yUDFG6j8AYYjnsQkk7uQwvHvImNj - bb+zu8+qViv5WQ21MuERs+BpCalMaSZvL9nhSCzqvGN0QDGFOxphMLSRayRf - sdG663QPCS0Fz5C5wYmlh18RHxZGt4zk14/rJhJ5ACiltDYE63CKxO3+Ad8X - 2DT8U6xe1RsvXeRO4gAAAA== + encoding: UTF-8 + string: | + { + "kind": "compute#networkList", + "id": "projects/GOOGLE_PROJECT/global/networks", + "items": [ + { + "kind": "compute#network", + "id": "7587328054479720388", + "creationTimestamp": "2016-05-11T06:18:35.147-07:00", + "name": "default", + "description": "Default network for the project", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "autoCreateSubnetworks": true, + "subnetworks": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east4/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/northamerica-northeast1/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-west1/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west1/subnetworks/default-9893b487155177d5", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west2/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/southamerica-east1/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-southeast1/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west3/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/europe-west4/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1/subnetworks/default-372dec1aa369576e", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/australia-southeast1/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-south1/subnetworks/default", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/subnetworks/default-0d01dc41a9f25811", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-northeast1/subnetworks/default" + ], + "routingConfig": { + "routingMode": "REGIONAL" + } + }, + { + "kind": "compute#network", + "id": "7002839308139590219", + "creationTimestamp": "2018-01-18T08:34:44.334-08:00", + "name": "lkhomenk-network", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/lkhomenk-network", + "autoCreateSubnetworks": false, + "subnetworks": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/lkhomenk-subnet" + ], + "routingConfig": { + "routingMode": "REGIONAL" + } + }, + { + "kind": "compute#network", + "id": "7143984852736943806", + "creationTimestamp": "2018-02-15T06:25:21.743-08:00", + "name": "test-tfischer-vpc", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/test-tfischer-vpc", + "autoCreateSubnetworks": false, + "subnetworks": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/test-tfischer-subnet-2", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/test-tfischer-subnet" + ], + "routingConfig": { + "routingMode": "REGIONAL" + } + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:04 GMT + recorded_at: Fri, 11 May 2018 14:33:49 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-west1/forwardingRules + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/firewalls body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:49 GMT + Authorization: + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:04 GMT + - Fri, 11 May 2018 14:33:50 GMT Date: - - Fri, 02 Jun 2017 19:26:04 GMT + - Fri, 11 May 2018 14:33:50 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/a0_ehRdoC9mhXon6X-TOU6-VlKU"' + - '"dRo7qUU6aK8GXWrw_78fTivXKNA=/oDL785Qbzj6aQe1oU5_ZoeKrXPQ="' Vary: - Origin - X-Origin @@ -7892,52 +62763,337 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOMRKCMBAAe17BxFa4yWDFG6j8AYQjnsQkk7uQwvHvImNj - bb+zu8+qViv5WfW1MuERs+BpCamMaSZvr9nhQCzqvGN0QDGFOxphMLSRayRP - 2GjddfoCCS0Fz5C5Kcii4VfEh4XRLQP59eO6iUTuAUoprQ3BOhwjcbt/wPcF - Ng3/FKtX9QY+InOS4gAAAA== + encoding: UTF-8 + string: | + { + "kind": "compute#firewallList", + "id": "projects/GOOGLE_PROJECT/global/firewalls", + "items": [ + { + "kind": "compute#firewall", + "id": "8011663801057929551", + "creationTimestamp": "2016-05-24T06:31:12.283-07:00", + "name": "default-allow-http", + "description": "", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "priority": 1000, + "sourceRanges": [ + "0.0.0.0/0" + ], + "targetTags": [ + "http-server" + ], + "allowed": [ + { + "IPProtocol": "tcp", + "ports": [ + "80" + ] + } + ], + "direction": "INGRESS", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/firewalls/default-allow-http" + }, + { + "kind": "compute#firewall", + "id": "496761962782407384", + "creationTimestamp": "2016-05-20T14:40:07.884-07:00", + "name": "default-allow-https", + "description": "", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "priority": 1000, + "sourceRanges": [ + "0.0.0.0/0" + ], + "targetTags": [ + "https-server" + ], + "allowed": [ + { + "IPProtocol": "tcp", + "ports": [ + "443" + ] + } + ], + "direction": "INGRESS", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/firewalls/default-allow-https" + }, + { + "kind": "compute#firewall", + "id": "3845113802410332070", + "creationTimestamp": "2016-05-11T06:19:05.474-07:00", + "name": "default-allow-icmp", + "description": "Allow ICMP from anywhere", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "priority": 65534, + "sourceRanges": [ + "0.0.0.0/0" + ], + "allowed": [ + { + "IPProtocol": "icmp" + } + ], + "direction": "INGRESS", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/firewalls/default-allow-icmp" + }, + { + "kind": "compute#firewall", + "id": "4165254548620742566", + "creationTimestamp": "2016-05-11T06:19:05.378-07:00", + "name": "default-allow-internal", + "description": "Allow internal traffic on the default network", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "priority": 65534, + "sourceRanges": [ + "10.128.0.0/9" + ], + "allowed": [ + { + "IPProtocol": "tcp", + "ports": [ + "0-65535" + ] + }, + { + "IPProtocol": "udp", + "ports": [ + "0-65535" + ] + }, + { + "IPProtocol": "icmp" + } + ], + "direction": "INGRESS", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/firewalls/default-allow-internal" + }, + { + "kind": "compute#firewall", + "id": "8392497795275067302", + "creationTimestamp": "2016-05-11T06:19:05.442-07:00", + "name": "default-allow-rdp", + "description": "Allow RDP from anywhere", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "priority": 65534, + "sourceRanges": [ + "0.0.0.0/0" + ], + "allowed": [ + { + "IPProtocol": "tcp", + "ports": [ + "3389" + ] + } + ], + "direction": "INGRESS", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/firewalls/default-allow-rdp" + }, + { + "kind": "compute#firewall", + "id": "8860601560697048998", + "creationTimestamp": "2016-05-11T06:19:05.410-07:00", + "name": "default-allow-ssh", + "description": "Allow SSH from anywhere", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "priority": 65534, + "sourceRanges": [ + "0.0.0.0/0" + ], + "allowed": [ + { + "IPProtocol": "tcp", + "ports": [ + "22" + ] + } + ], + "direction": "INGRESS", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/firewalls/default-allow-ssh" + }, + { + "kind": "compute#firewall", + "id": "8145292603057778484", + "creationTimestamp": "2018-01-03T18:30:51.307-08:00", + "name": "gke-tachoi-cluster-4866da88-all", + "description": "", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "priority": 1000, + "sourceRanges": [ + "10.48.0.0/14" + ], + "allowed": [ + { + "IPProtocol": "tcp" + }, + { + "IPProtocol": "udp" + }, + { + "IPProtocol": "icmp" + }, + { + "IPProtocol": "esp" + }, + { + "IPProtocol": "ah" + }, + { + "IPProtocol": "sctp" + } + ], + "direction": "INGRESS", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/firewalls/gke-tachoi-cluster-4866da88-all" + }, + { + "kind": "compute#firewall", + "id": "8544804185984479028", + "creationTimestamp": "2018-01-03T18:30:51.308-08:00", + "name": "gke-tachoi-cluster-4866da88-ssh", + "description": "", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "priority": 1000, + "sourceRanges": [ + "35.201.28.223/32" + ], + "targetTags": [ + "gke-tachoi-cluster-4866da88-node" + ], + "allowed": [ + { + "IPProtocol": "tcp", + "ports": [ + "22" + ] + } + ], + "direction": "INGRESS", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/firewalls/gke-tachoi-cluster-4866da88-ssh" + }, + { + "kind": "compute#firewall", + "id": "49410946679975730", + "creationTimestamp": "2018-01-03T18:30:53.587-08:00", + "name": "gke-tachoi-cluster-4866da88-vms", + "description": "", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "priority": 1000, + "sourceRanges": [ + "10.128.0.0/9" + ], + "targetTags": [ + "gke-tachoi-cluster-4866da88-node" + ], + "allowed": [ + { + "IPProtocol": "tcp", + "ports": [ + "1-65535" + ] + }, + { + "IPProtocol": "udp", + "ports": [ + "1-65535" + ] + }, + { + "IPProtocol": "icmp" + } + ], + "direction": "INGRESS", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/firewalls/gke-tachoi-cluster-4866da88-vms" + }, + { + "kind": "compute#firewall", + "id": "5527302855512126289", + "creationTimestamp": "2018-01-18T08:39:26.892-08:00", + "name": "some-rule", + "description": "", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/lkhomenk-network", + "priority": 1000, + "sourceRanges": [ + "0.0.0.0/0" + ], + "targetTags": [ + "all" + ], + "allowed": [ + { + "IPProtocol": "all" + } + ], + "direction": "INGRESS", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/firewalls/some-rule" + }, + { + "kind": "compute#firewall", + "id": "6075005932760459654", + "creationTimestamp": "2016-11-29T20:36:57.740-08:00", + "name": "tcp", + "description": "", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "priority": 1000, + "sourceRanges": [ + "0.0.0.0/0" + ], + "allowed": [ + { + "IPProtocol": "tcp", + "ports": [ + "0-65535" + ] + } + ], + "direction": "INGRESS", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/firewalls/tcp" + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/firewalls" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:04 GMT + recorded_at: Fri, 11 May 2018 14:33:50 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/instances body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:50 GMT + Authorization: + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:05 GMT + - Fri, 11 May 2018 14:33:50 GMT Date: - - Fri, 02 Jun 2017 19:26:05 GMT + - Fri, 11 May 2018 14:33:50 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/YvQ4v37Ma9CTU2MfnxtEfKoRBWk"' + - '"A2Hc1KjiXmwiffj0-gZGgcTFjvw=/2-YEXTXver3JbvehyaxFYJBZ8Q0="' Vary: - Origin - X-Origin @@ -7954,69 +63110,1915 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAO3ab2+iMBwH8Oe+CsM9HdAWhI1nnhpjztNF8NHlYhjrHDcV - D8pMbtl7X/EvmwO0o/jgumQP1nbfwo+tn9D6UqtLT/7iXrLqkhfMlzHB30I8 - 9YNF34+IdEW7/XXnMgz+YI9Equc/+zOZxHdYhlDToK5uxkebwQTPIzr+V61e - f6HfWenJ4PouGyIEtg1eiF1C+x1/jiPizpdJPwLQkIEhQ92BpoVuLHitmAaU - gWmB3S8u3DlOxrqR78rYjQjcdtzjyAv9ZRL6aT+dhcTJJUvj223Tv2CBdzdB - f3wkZBlZqrparZRpEExn2F36kUJvSN3elPoM1ZwCrfPUw8yyu5mIR/Qdv2hP - SpJ/b2r0Nw6IeyjS+lnT5jkmoe8l1Wzdju3ttdSlmT/3CW01kQJ2bXHkTpNH - BhSwbnm9ykhq9+wf9sQZOs3+pPv9KLMB6BdDrO00nV5r0my3Rx3b7hxfLIIM - qb3BZGx3clKNG5ZrtdvlF6A/bNHA3GjEGN0b0OoOWp1JdzQc3x4XQSshdfKz - OWh2O6PjdNj4Svpnf7Usec2xM7Rphcu7wlGn2xsO6JPKjWYq7T765BrnTpNa - KCI8e+j7i6dkli+vSVtqUqtSsiat7+oMbRonaKPLyHQoMDqwGqZighxtFkFI - HovIORpUrTuH6fngk8rnIlAqvwSGkF4+QxAgnQtDJg+FkFa2Qgjo13wQYq1s - EUJsK+WpC2TJBrGVIA8KfgQxcXm2QLmzVAJQak1nUMgoVghSdaADNKsBLQAV - E4JshaIgLlboaFC1Ch2m56NQKv9OKCGUEEoIJS6uRGrNPV8JCErbGcNxGCyx - vMKZRHwyojIf0nOX/grxLtzjGX4v9sjEHpnYIxN7ZJffI3u3mp8vDyhPnjiS - PbwgoTvLgOd4QGXupKYu/Z0knV02aensskVLZz/wAQ3yAU3nI1rh1TKJVpjK - IhoSpLGln0haQ5B2OdLSTpwvGtKKRNNlcCMDzYGGBTVLp/+zUMsSLWer7UNv - lZbxOYLZB3OQZhPM6b2JEzPGf8+MUIYt/URlCp+ZUIarMsyHOmYRMaYMoAyB - Awzqi6VpiokoOdeZxOi5xOgXIkbn8a60CeZkly4+NyBOhMSJkDgRuuyJ0H7d - ZrAFlrkhl3MM9KG3Sls2hygcbOFzrrQPFrYIW4QtwpZL23I47Kmtp+IykVR7 - rb0B1/WilTg0AAA= + encoding: UTF-8 + string: | + { + "kind": "compute#instanceAggregatedList", + "id": "projects/GOOGLE_PROJECT/aggregated/instances", + "items": { + "zones/us-central1-a": { + "instances": [ + { + "kind": "compute#instance", + "id": "9028819323520596299", + "creationTimestamp": "2017-05-05T16:15:49.368-07:00", + "name": "instance-group-1-gvej", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "networkIP": "10.128.0.3", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.184.135.147" + } + ], + "fingerprint": "FNADd--WMGI=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/instance-group-1-gvej", + "deviceName": "instance-template-1", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "MaK5DI9wgnw=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/instance-template-1" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/us-central1-a/instanceGroupManagers/instance-group-1" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/instance-group-1-gvej", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Sandy Bridge", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "6489403966841993547", + "creationTimestamp": "2017-05-05T16:15:48.966-07:00", + "name": "instance-group-1-veey", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "networkIP": "10.128.0.2", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.184.135.186" + } + ], + "fingerprint": "LEoy8V7pWeY=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/instance-group-1-veey", + "deviceName": "instance-template-1", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "MaK5DI9wgnw=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/instance-template-1" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/us-central1-a/instanceGroupManagers/instance-group-1" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/instance-group-1-veey", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Sandy Bridge", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "8634296220507466852", + "creationTimestamp": "2018-02-03T07:17:32.378-08:00", + "name": "instance-group-2-kwrw", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "networkIP": "10.128.0.6", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.184.30.147" + } + ], + "fingerprint": "qNAsElx8wrQ=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/instance-group-2-kwrw", + "deviceName": "instance-template-1", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "gHBWSZ7NFbw=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/instance-template-1" + }, + { + "key": "created-by", + "value": "projects/135776510666/regions/us-central1/instanceGroupManagers/instance-group-2" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/instance-group-2-kwrw", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Sandy Bridge", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "8920424377663102465", + "creationTimestamp": "2018-05-11T06:55:59.139-07:00", + "name": "preemptible", + "description": "", + "tags": { + "fingerprint": "42WmSpB8rSM=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/custom-1-1024", + "status": "TERMINATED", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "networkIP": "10.128.0.4", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT" + } + ], + "fingerprint": "YMiAdORsxnE=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/preemptible", + "deviceName": "preemptible", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/centos-cloud/global/licenses/centos-7" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "_t6z3Bf7i-o=" + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/preemptible", + "scheduling": { + "onHostMaintenance": "TERMINATE", + "automaticRestart": false, + "preemptible": true + }, + "cpuPlatform": "Unknown CPU Platform", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + } + ] + }, + "zones/us-central1-b": { + "instances": [ + { + "kind": "compute#instance", + "id": "6342656303069425132", + "creationTimestamp": "2018-02-03T07:19:32.305-08:00", + "name": "instance-group-2-797c", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "networkIP": "10.128.0.7", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.192.138.23" + } + ], + "fingerprint": "e4uI1bMGSVk=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/disks/instance-group-2-797c", + "deviceName": "instance-template-1", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "gHBWSZ7NFbw=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/instance-template-1" + }, + { + "key": "created-by", + "value": "projects/135776510666/regions/us-central1/instanceGroupManagers/instance-group-2" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-b/instances/instance-group-2-797c", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Haswell", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + } + ] + }, + "zones/us-central1-c": { + "instances": [ + { + "kind": "compute#instance", + "id": "7978182915992874495", + "creationTimestamp": "2018-02-03T07:19:45.430-08:00", + "name": "instance-group-2-q1kv", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "networkIP": "10.128.0.8", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.193.223.75" + } + ], + "fingerprint": "Oiuz84mP5c8=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/disks/instance-group-2-q1kv", + "deviceName": "instance-template-1", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "gHBWSZ7NFbw=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/instance-template-1" + }, + { + "key": "created-by", + "value": "projects/135776510666/regions/us-central1/instanceGroupManagers/instance-group-2" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-c/instances/instance-group-2-q1kv", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Haswell", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + } + ] + }, + "zones/us-central1-f": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-central1-f' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-central1-f" + } + ] + } + }, + "zones/europe-west1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west1-b" + } + ] + } + }, + "zones/europe-west1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west1-c" + } + ] + } + }, + "zones/europe-west1-d": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west1-d' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west1-d" + } + ] + } + }, + "zones/us-west1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-west1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-west1-a" + } + ] + } + }, + "zones/us-west1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-west1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-west1-b" + } + ] + } + }, + "zones/us-west1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-west1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-west1-c" + } + ] + } + }, + "zones/asia-east1-a": { + "instances": [ + { + "kind": "compute#instance", + "id": "2226781571317376688", + "creationTimestamp": "2017-01-06T05:15:11.409-08:00", + "name": "load-balancer-1", + "description": "", + "tags": { + "fingerprint": "42WmSpB8rSM=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-standard-1", + "status": "TERMINATED", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/subnetworks/default-0d01dc41a9f25811", + "networkIP": "10.140.0.5", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT" + } + ], + "fingerprint": "Txrbd_lIc_E=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/load-balancer-1", + "deviceName": "load-balancer-1", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "_t6z3Bf7i-o=" + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-1", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Unknown CPU Platform", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + } + ] + }, + "zones/asia-east1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-east1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-east1-b" + } + ] + } + }, + "zones/asia-east1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-east1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-east1-c" + } + ] + } + }, + "zones/us-east1-b": { + "instances": [ + { + "kind": "compute#instance", + "id": "1757744565355327605", + "creationTimestamp": "2017-06-23T05:50:35.265-07:00", + "name": "cfme-auto-ig-dk1z", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1/subnetworks/default-372dec1aa369576e", + "networkIP": "10.142.0.4", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.185.69.234" + } + ], + "fingerprint": "Ggrkya_N-ew=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/disks/cfme-auto-ig-dk1z", + "deviceName": "cfme-auto-it-win", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "zbpDnS1k4C0=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/cfme-auto-it-win" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/us-east1-b/instanceGroupManagers/cfme-auto-ig" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/instances/cfme-auto-ig-dk1z", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Haswell", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "1607647557283000433", + "creationTimestamp": "2017-06-23T05:50:39.268-07:00", + "name": "cfme-auto-ig-jg50", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1/subnetworks/default-372dec1aa369576e", + "networkIP": "10.142.0.5", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.185.94.235" + } + ], + "fingerprint": "SPrd1IRhRik=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/disks/cfme-auto-ig-jg50", + "deviceName": "cfme-auto-it-win", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "zbpDnS1k4C0=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/cfme-auto-it-win" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/us-east1-b/instanceGroupManagers/cfme-auto-ig" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/instances/cfme-auto-ig-jg50", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Haswell", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "1602451531618103413", + "creationTimestamp": "2017-06-23T05:50:35.051-07:00", + "name": "cfme-auto-ig-nddf", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1/subnetworks/default-372dec1aa369576e", + "networkIP": "10.142.0.3", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.185.46.204" + } + ], + "fingerprint": "fnh_xtFJFfM=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/disks/cfme-auto-ig-nddf", + "deviceName": "cfme-auto-it-win", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/windows-cloud/global/licenses/windows-server-2012-r2-dc" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "zbpDnS1k4C0=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/cfme-auto-it-win" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/us-east1-b/instanceGroupManagers/cfme-auto-ig" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/instances/cfme-auto-ig-nddf", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Haswell", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "2083234809321676933", + "creationTimestamp": "2016-10-05T13:11:22.662-07:00", + "name": "cu-24x7", + "description": "", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1/subnetworks/default-372dec1aa369576e", + "networkIP": "10.142.0.2", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "104.196.166.192" + } + ], + "fingerprint": "QhiToXw4u1I=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/disks/cu-24x7", + "deviceName": "cu-24x7", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-1404-trusty" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "_t6z3Bf7i-o=" + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-b/instances/cu-24x7", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Haswell", + "labels": { + "http-server": "", + "https-server": "" + }, + "labelFingerprint": "6smc4R4d39I=", + "startRestricted": false, + "deletionProtection": false + } + ] + }, + "zones/us-east1-c": { + "instances": [ + { + "kind": "compute#instance", + "id": "3801021534917226736", + "creationTimestamp": "2018-05-10T06:50:25.160-07:00", + "name": "simaishi-g3", + "description": "", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/machineTypes/n1-standard-1", + "status": "TERMINATED", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-east1/subnetworks/default-372dec1aa369576e", + "networkIP": "10.142.0.6", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT" + } + ], + "fingerprint": "X4_ddeJf0hM=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/disks/simaishi-g3", + "deviceName": "simaishi-g3", + "index": 0, + "boot": true, + "autoDelete": true, + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "CQ5uh_FNy4g=", + "items": [ + { + "key": "ssh-keys", + "value": "simaishi:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCqgV8T4axK0xhHJ6QO8I9PXEpnDU8m+IaNUdUGyVYBpzSkJMPA4yIOYzycpra+ZXOOlauXdL69AZ6np+4Q833VwJzpQ7/bIZXym4DYvn+SraCXgAhnzvbJnOJPfCQnIZ1NCKMCJvwlMSex1/Be+AaRu+Z5mEUTrAEiExfdmTS+nl5xWYel4GPA4vq9lDEKZdyYdkDN22k01CxpiBFr+qLpQ0ECLnT2ZvWq144kzK9Nx012YTdBb7agj/kDo+1PIEdP5t9RvYmdGfOrAAPodACucKUGIoiAJwDUbfId4Zvf6+tNUM//EVOFUhRWgkIoJXpJWrQkqhADPCm3ZpPmWt5L simaishi" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-east1-c/instances/simaishi-g3", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Unknown CPU Platform", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + } + ] + }, + "zones/us-east1-d": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east1-d' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east1-d" + } + ] + } + }, + "zones/asia-northeast1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-northeast1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-northeast1-a" + } + ] + } + }, + "zones/asia-northeast1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-northeast1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-northeast1-b" + } + ] + } + }, + "zones/asia-northeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-northeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-northeast1-c" + } + ] + } + }, + "zones/asia-southeast1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-southeast1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-southeast1-a" + } + ] + } + }, + "zones/asia-southeast1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-southeast1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-southeast1-b" + } + ] + } + }, + "zones/asia-southeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-southeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-southeast1-c" + } + ] + } + }, + "zones/us-east4-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east4-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east4-a" + } + ] + } + }, + "zones/us-east4-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east4-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east4-b" + } + ] + } + }, + "zones/us-east4-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/us-east4-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/us-east4-c" + } + ] + } + }, + "zones/australia-southeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/australia-southeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/australia-southeast1-c" + } + ] + } + }, + "zones/australia-southeast1-a": { + "instances": [ + { + "kind": "compute#instance", + "id": "5932316205646884615", + "creationTimestamp": "2018-01-03T18:31:05.578-08:00", + "name": "gke-tachoi-cluster-default-pool-8f292535-2rp9", + "tags": { + "items": [ + "gke-tachoi-cluster-4866da88-node" + ], + "fingerprint": "HFNr93BfW4U=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a", + "canIpForward": true, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/australia-southeast1/subnetworks/default", + "networkIP": "10.152.0.4", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "external-nat", + "natIP": "35.189.46.7" + } + ], + "fingerprint": "RR1553AQ9Kw=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/disks/gke-tachoi-cluster-default-pool-8f292535-2rp9", + "deviceName": "persistent-disk-0", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos", + "https://www.googleapis.com/compute/v1/projects/gke-node-images/global/licenses/gke-node" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "LaMqxao2FPg=", + "items": [ + { + "key": "kube-env", + "value": "ALLOCATE_NODE_CIDRS: \"true\"\nCA_CERT: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURDekNDQWZPZ0F3SUJBZ0lRS0Fzci9qS3crZXVZSlVzNTJOMGk3VEFOQmdrcWhraUc5dzBCQVFzRkFEQXYKTVMwd0t3WURWUVFERXlSaVpEYzJPRGt4WXkwNFlqQmlMVFF4WldZdE9EVmtZeTB4WVRsbFlXRTJORGhpWldJdwpIaGNOTVRnd01UQTBNREV6TURJNFdoY05Nak13TVRBek1ESXpNREk0V2pBdk1TMHdLd1lEVlFRREV5UmlaRGMyCk9Ea3hZeTA0WWpCaUxUUXhaV1l0T0RWa1l5MHhZVGxsWVdFMk5EaGlaV0l3Z2dFaU1BMEdDU3FHU0liM0RRRUIKQVFVQUE0SUJEd0F3Z2dFS0FvSUJBUUNvQjMwY3BIVDdlVzVPS2x0V2JiM1RkL09VOSs4ZEhEV3ZaNk1KRXdQZAp4OUZNRERCUEF2VHZsRDBSakhEMzBjZ1pNS3UreUVpVkp5Q214T2swOEZ5a2p6bUFUV1R0aUpJRHR1Y21vNEpMCjhic3luQmM5cHZSNGprNm5HSzdYdFdVK1ZTZDllRWJNQWl2MTAyU0h6L1ZTSDZqa2ZMVVVqbk9FQWQ3VVhiVnAKWDNFMVRjZm45bUFSbFVrM3FnUzdQNnlQMFU0eWJncDF1Y2FwZXdaM2hoYkpLblVHSVBnSnhrcDhlT3NIbjcvVwpLS3pWVzlFSmtTVnFqaHhRaStYUis3Z29EUXpZUmtpUlpDbXhlK0FONVl0MXJQK2FjenpGNWtaZk1SWC9BU1NnCnhTRmRvako3bG9vOEZjUGF6ZFVYRVZYK1Zva0ExN290YncxMlp2UFpEeDd0QWdNQkFBR2pJekFoTUE0R0ExVWQKRHdFQi93UUVBd0lDQkRBUEJnTlZIUk1CQWY4RUJUQURBUUgvTUEwR0NTcUdTSWIzRFFFQkN3VUFBNElCQVFBUwprOVh2cXNyVkdiQkg1NFAxbVArTEcvaHZ1VjhGNm4yMDNFK2thTWFXUnRyQWYzQkFiMWY4bFZ2eVJnbFloeUhCClIyZUo3cUMrOXo0SGtPbHhud0ZtWnlaWEgvRUY1VjlyVUZQQ3BXUTNZWlpqYk13NmJGdXpFc3dUMnI4QVVhM1QKN3k5WWdvTEJsVC9ZVTRhbU5IelhuUjlwMjRNM1A1K0NhdThYMEZnNnl6UFRpZ0hsMlRYd1dCZjFZZEVybjkzcAp1d3kwU1hRTmxDTEhpMUdackZoUjlnSTRJQVRSKzgvdGlHcnZkN0Fkd3paZGxVaEFWRndZZHA1MVB5SUVEcEdMCkcyZzVTUTFyamtlTmFtUzRvZ3V6UHFSRVhLcVZCVk5Tc2NQdzVTekJtN0doTDVyYVVaM1lkUG4zNkN0NmVXOVIKVkhodFdENWtxWFJKb3FZVVltSjgKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\nCLUSTER_IP_RANGE: 10.48.0.0/14\nCLUSTER_NAME: tachoi-cluster\nDISABLE_DOCKER_LIVE_RESTORE: \"true\"\nDNS_DOMAIN: cluster.local\nDNS_SERVER_IP: 10.51.240.10\nDOCKER_REGISTRY_MIRROR_URL: https://mirror.gcr.io\nDOCKER_STORAGE_DRIVER: overlay\nELASTICSEARCH_LOGGING_REPLICAS: \"1\"\nENABLE_CLUSTER_DNS: \"true\"\nENABLE_CLUSTER_LOGGING: \"false\"\nENABLE_CLUSTER_MONITORING: stackdriver\nENABLE_CLUSTER_REGISTRY: \"false\"\nENABLE_CLUSTER_UI: \"true\"\nENABLE_L7_LOADBALANCING: glbc\nENABLE_METRICS_SERVER: \"false\"\nENABLE_NODE_LOGGING: \"true\"\nENABLE_NODE_PROBLEM_DETECTOR: standalone\nENV_TIMESTAMP: 2018-01-04T02:30:28+00:00\nEVICTION_HARD: memory.available\u003c100Mi,nodefs.available\u003c10%,nodefs.inodesFree\u003c5%\nEXTRA_DOCKER_OPTS: --insecure-registry 10.0.0.0/8\nFEATURE_GATES: ExperimentalCriticalPodAnnotation=true\nHPA_USE_REST_CLIENTS: \"false\"\nINSTANCE_PREFIX: gke-tachoi-cluster-4866da88\nKUBE_ADDON_REGISTRY: asia.gcr.io/google_containers\nKUBE_MANIFESTS_TAR_HASH: c0940432742d2102f68266242412e37b0881c958\nKUBE_MANIFESTS_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz\nKUBE_PROXY_TOKEN: 5gRQETqOuI0b0us_TIvCiZ7M_5twdLTwT2z9kwaVWlY=\nKUBELET_CERT: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUMyekNDQWNPZ0F3SUJBZ0lRU1c5aVl3cUlrMVpiT3UyZ2JrRVlQREFOQmdrcWhraUc5dzBCQVFzRkFEQXYKTVMwd0t3WURWUVFERXlSaVpEYzJPRGt4WXkwNFlqQmlMVFF4WldZdE9EVmtZeTB4WVRsbFlXRTJORGhpWldJdwpIaGNOTVRnd01UQTBNREl6TURJNVdoY05Nak13TVRBek1ESXpNREk1V2pBU01SQXdEZ1lEVlFRREV3ZHJkV0psCmJHVjBNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTBic09JSzEwa0dtN0s3QlgKb25uMXJPWStMVThENEs5V0hJa0doM1RsaDNteERUYkZ3dXQyUkxmeFpmSWZldHg4YmFGZmtOVCsvQ2hLWEsraApqWXdlWjFsV0JBdzljdTJuQ3JBOHJad3NaRm9tM2R3K0poczJnbU9kcWc0VXhkaUN6bWo1ZFk4MHROSzRDQ1lICit0bmp1azRGUWU5SVRMeTVEMGVLd0V0RVVUalhhRGd1OGxibGxiNmhSU2Y3bHVsM0kzQzBMNFpQRElpSVB4SnkKNXhpVU43cUc0WTFBWFNxcW53YkMrbVJ6QVEwK1Z5SFVFWHVhTUo3YVpnNGRyY2JKZkEyZWUrWjlDQXJLNkRQSgoxS2tIMG1FV1NzS0pGWENOdFpjUmpnM0V2a05sYzE1bnNFOWMvcVpxWWowM1FCTEl0M0JqNzFVUitBYjlVY0w5CkV6eThtUUlEQVFBQm94QXdEakFNQmdOVkhSTUJBZjhFQWpBQU1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQVEKdjRvZWhjS1FwK3NwenllL0pTaTY0eXBzRmI5M05JeTZTaVAwWU9QVURibk9pNGUvSnhvZFNKeWgzREtLcjIrTwpDbTQrRWxDNDJnVkx6L2FZbXUxNWRXRVhFZTQrL1IxSW45eG9Hb01qM3VJd1U5MUd5SlltM0dPenlNd2lnUTJzCmlHTjljWE0wblZqUzlBa09uWlZjVE1CMGpNU1BORnlXVnprdzdudkZJTlkxVEM4b3BZUGxJTVBJWlpZVFYvdkEKaGNNcWxwenhLV3lqMUF0bHk0MWdGS0w1clV5ZWllT3p6YkZzUUVyNDZmNjQ3MFBIZ1o2QmdGZm9KcUUyamtvUwpyczJOWWZ6ZmdrRUhFUFBMakVJQlZiclozYm5TREJLdnhBVjAyRVl4bUI0UzVQY05CTC84Zjc3SThlZ2ozTTZiCjh3YVF3U29LeWFxbG9GYVVndWQ0Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\nKUBELET_KEY: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFb2dJQkFBS0NBUUVBMGJzT0lLMTBrR203SzdCWG9ubjFyT1krTFU4RDRLOVdISWtHaDNUbGgzbXhEVGJGCnd1dDJSTGZ4WmZJZmV0eDhiYUZma05UKy9DaEtYSytoall3ZVoxbFdCQXc5Y3UybkNyQThyWndzWkZvbTNkdysKSmhzMmdtT2RxZzRVeGRpQ3ptajVkWTgwdE5LNENDWUgrdG5qdWs0RlFlOUlUTHk1RDBlS3dFdEVVVGpYYURndQo4bGJsbGI2aFJTZjdsdWwzSTNDMEw0WlBESWlJUHhKeTV4aVVON3FHNFkxQVhTcXFud2JDK21SekFRMCtWeUhVCkVYdWFNSjdhWmc0ZHJjYkpmQTJlZStaOUNBcks2RFBKMUtrSDBtRVdTc0tKRlhDTnRaY1JqZzNFdmtObGMxNW4Kc0U5Yy9xWnFZajAzUUJMSXQzQmo3MVVSK0FiOVVjTDlFenk4bVFJREFRQUJBb0lCQUFyekRwWkRLQUpBR3Q3NQppbUczcDAxYkNlVDRxcFdvNGNDRW9Od2lqTGNwY2Naa1ZTZkxmald4T3IrZFIrcDBwMlJiMSs3cVI5T25VTmFNCjdzekNnM1hXMHFoTWNVcldRSEhNNktZUnNMbWVnVWYwN3lPektRSGVySVVMemliVUdtUW5VOXJBMnJvVUJEcWMKcmE3NWdDdWlWaUR1bXFJeStpQmpsa2xheEpyTzJqSk5JYW91WHluRVppNEhKRWhzbUxIaW5kMHBmNUFIOXViTgppcGpwQ21Zd21GaTkzNlEvODJOYkZiVnhyT2toVnFKcmJRWGpKZHRFa0RtQXlYc2NYZWg3WnF0RGxVRkgxRGZjCmduc1RnKzFjc3hKbm1LcTJleFJQdUcwd1gzYWZwejZrUkREN1l5VkJSYXIwL296bWU5aDgxOHJNaXJtVHdvWHIKWmRtaTRmOENnWUVBNkJPOVhQcXRwOEdDdDZsUkNoeS9qQ1I0WFNQMXFMVXBTbE1ncTc2VHBHVm5mNGw2TkpoSwpXNDVuWmptOThIa3FNeFZYdFBhaTZoWW1UOFJyOWVzSlBpNnBEakZOMFlFZVVSS2M3eXVNaU9Dc1FCNllwSVl1CnZuNWl2UnA5VlFxcHVRc0RQaDRlOFZ1d25VNnQxcCtIT3QxaE1tZ3JVU05UbFc3KzdqU1ZrTjhDZ1lFQTUxbWUKTFBhNUhYNzRpa3JTWkxKVGIwZmxzT0ppNnRaMEZhWGcvUFZMUTVxVlI2bzJHN3Z0bmQycjQ5YjBxOWkyV3lXQQpzR0pBRW4vU1p1L1NDcnpnMjdWeUdFMjRVV0RDUFZQTGs4eDI2cklQeVZVNlQ0Zk5KRVBtekN2NXZFZjJLWHg3CmJEZk1ySzdKdkwrUHRxM2NWNlZvbnZyL2x2ODgyQzIrRFY3cWlZY0NnWUFvS3RwNGtFNmtIV01SaExXcENXYkIKeThJbFpNYnRCMFg1UGtBR1dicldGbEwraVAza3dvTUVLN2FMdyt5ekJWV2ZkODh4WEFyQWQwcjBQV3Z1S1ZyMQpMMEJGVzVVN2NKeWRyWm9KNzBDb3BESkwrcit5b2lMUEI3THhSZmR4VTZJaWk5eG8wTy9NR0hHT0dJTVFCWlp6ClFzUEM1TEt5bldtbkVJb0JFb3JjZ3dLQmdCWCs4RW9JSHl1TndlV3NIWHJUZFpsVDlhT3Vzb2J2WXRRWUZGOFkKbDFKVEpUUk9HNXpoYmtNZksxT2JRV0lCVmIwdXdLQ0VodUQ3WkM3RFNHNGE3U29XZzBXS1JpYitreGt2bVdCeApCVEZsUXBqNjBITjFUdXpPdytmUG1vdnJMNTFjSjRQdmZqZEEydzltQ3l6c05OSGtlU0Q4YmthVjk5djU1V0x5CkRreUxBb0dBUnZERVBWQUh2d3pMU1Zyc2tOWWppR2VncG1mVnh6UVdOQUVsWlltWXJ2M1BzTWtTcS9MRnZnNEcKS3Zzd1k5a2pCbm9vTHN1eGVtRGRLVmw5MDNKTy9WQ3JVaVRJVjJsRDlrTk9EeGl6cUZjekladUY3UE5sZ2k0ZQp6THBCQ1E5Q1hYYVRBU0pHeU42enM4QVBVNVhIZVVDLzNXckVQanBOZjFLZldtTFp3MDQ9Ci0tLS0tRU5EIFJTQSBQUklWQVRFIEtFWS0tLS0tCg==\nKUBELET_TEST_ARGS: --docker-disable-shared-pid --kube-reserved=cpu=60m,memory=960Mi\nKUBERNETES_MASTER: \"false\"\nKUBERNETES_MASTER_NAME: 35.201.28.223\nLOGGING_DESTINATION: gcp\nNETWORK_PROVIDER: kubenet\nNODE_LABELS: beta.kubernetes.io/fluentd-ds-ready=true,cloud.google.com/gke-nodepool=default-pool\nNODE_LOCAL_SSDS_EXT: \"\"\nNODE_PROBLEM_DETECTOR_TOKEN: BXhTLGIjOH_1PMvnEDMTJgrbxWg_chQruMHYDpFTtCc=\nSALT_TAR_HASH: 754852fefa25d0c9d9ec499afab62605c97b6449\nSALT_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-salt.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-salt.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-salt.tar.gz\nSERVER_BINARY_TAR_HASH: 26c86bce55e2d139168d626232eabfa3a776b28b\nSERVER_BINARY_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz\nSERVICE_CLUSTER_IP_RANGE: 10.51.240.0/20\nZONE: australia-southeast1-a\n" + }, + { + "key": "user-data", + "value": "#cloud-config\n\nwrite_files:\n - path: /etc/systemd/system/kube-node-installation.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Download and install k8s binaries and configurations\n After=network-online.target\n\n [Service]\n Type=oneshot\n RemainAfterExit=yes\n ExecStartPre=/bin/mkdir -p /home/kubernetes/bin\n ExecStartPre=/bin/mount --bind /home/kubernetes/bin /home/kubernetes/bin\n ExecStartPre=/bin/mount -o remount,exec /home/kubernetes/bin\n ExecStartPre=/usr/bin/curl --fail --retry 5 --retry-delay 3 --silent --show-error\t-H \"X-Google-Metadata-Request: True\" -o /home/kubernetes/bin/configure.sh http://metadata.google.internal/computeMetadata/v1/instance/attributes/configure-sh\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/configure.sh\n ExecStart=/home/kubernetes/bin/configure.sh\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-node-configuration.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Configure kubernetes node\n After=kube-node-installation.service\n\n [Service]\n Type=oneshot\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/configure-helper.sh\n ExecStart=/home/kubernetes/bin/configure-helper.sh\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-docker-monitor.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes health monitoring for docker\n After=kube-node-configuration.service\n\n [Service]\n Restart=always\n RestartSec=10\n RemainAfterExit=yes\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh\n ExecStart=/home/kubernetes/bin/health-monitor.sh docker\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kubelet-monitor.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes health monitoring for kubelet\n After=kube-node-configuration.service\n\n [Service]\n Restart=always\n RestartSec=10\n RemainAfterExit=yes\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh\n ExecStart=/home/kubernetes/bin/health-monitor.sh kubelet\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-logrotate.timer\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Hourly kube-logrotate invocation\n\n [Timer]\n OnCalendar=hourly\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-logrotate.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes log rotation\n After=kube-node-configuration.service\n\n [Service]\n Type=oneshot\n ExecStart=-/usr/sbin/logrotate /etc/logrotate.conf\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kubernetes.target\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes\n\n [Install]\n WantedBy=multi-user.target\n\nruncmd:\n - systemctl daemon-reload\n - systemctl enable kube-node-installation.service\n - systemctl enable kube-node-configuration.service\n - systemctl enable kube-docker-monitor.service\n - systemctl enable kubelet-monitor.service\n - systemctl enable kube-logrotate.timer\n - systemctl enable kube-logrotate.service\n - systemctl enable kubernetes.target\n - systemctl start kubernetes.target\n" + }, + { + "key": "gci-update-strategy", + "value": "update_disabled" + }, + { + "key": "gci-ensure-gke-docker", + "value": "true" + }, + { + "key": "configure-sh", + "value": "#!/bin/bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n# Due to the GCE custom metadata size limit, we split the entire script into two\n# files configure.sh and configure-helper.sh. The functionality of downloading\n# kubernetes configuration, manifests, docker images, and binary files are\n# put in configure.sh, which is uploaded via GCE custom metadata.\n\nset -o errexit\nset -o nounset\nset -o pipefail\n\nfunction set-broken-motd {\n cat \u003e /etc/motd \u003c\u003cEOF\nBroken (or in progress) Kubernetes node setup! Check the cluster initialization status\nusing the following commands.\n\nMaster instance:\n - sudo systemctl status kube-master-installation\n - sudo systemctl status kube-master-configuration\n\nNode instance:\n - sudo systemctl status kube-node-installation\n - sudo systemctl status kube-node-configuration\nEOF\n}\n\nfunction download-kube-env {\n # Fetch kube-env from GCE metadata server.\n local -r tmp_kube_env=\"/tmp/kube-env.yaml\"\n curl --fail --retry 5 --retry-delay 3 --silent --show-error \\\n -H \"X-Google-Metadata-Request: True\" \\\n -o \"${tmp_kube_env}\" \\\n http://metadata.google.internal/computeMetadata/v1/instance/attributes/kube-env\n # Convert the yaml format file into a shell-style file.\n eval $(python -c '''\nimport pipes,sys,yaml\nfor k,v in yaml.load(sys.stdin).iteritems():\n print(\"readonly {var}={value}\".format(var = k, value = pipes.quote(str(v))))\n''' \u003c \"${tmp_kube_env}\" \u003e \"${KUBE_HOME}/kube-env\")\n rm -f \"${tmp_kube_env}\"\n}\n\nfunction download-kube-master-certs {\n # Fetch kube-env from GCE metadata server.\n local -r tmp_kube_master_certs=\"/tmp/kube-master-certs.yaml\"\n curl --fail --retry 5 --retry-delay 3 --silent --show-error \\\n -H \"X-Google-Metadata-Request: True\" \\\n -o \"${tmp_kube_master_certs}\" \\\n http://metadata.google.internal/computeMetadata/v1/instance/attributes/kube-master-certs\n # Convert the yaml format file into a shell-style file.\n eval $(python -c '''\nimport pipes,sys,yaml\nfor k,v in yaml.load(sys.stdin).iteritems():\n print(\"readonly {var}={value}\".format(var = k, value = pipes.quote(str(v))))\n''' \u003c \"${tmp_kube_master_certs}\" \u003e \"${KUBE_HOME}/kube-master-certs\")\n rm -f \"${tmp_kube_master_certs}\"\n}\n\nfunction validate-hash {\n local -r file=\"$1\"\n local -r expected=\"$2\"\n\n actual=$(sha1sum ${file} | awk '{ print $1 }') || true\n if [[ \"${actual}\" != \"${expected}\" ]]; then\n echo \"== ${file} corrupted, sha1 ${actual} doesn't match expected ${expected} ==\"\n return 1\n fi\n}\n\n# Retry a download until we get it. Takes a hash and a set of URLs.\n#\n# $1 is the sha1 of the URL. Can be \"\" if the sha1 is unknown.\n# $2+ are the URLs to download.\nfunction download-or-bust {\n local -r hash=\"$1\"\n shift 1\n\n local -r urls=( $* )\n while true; do\n for url in \"${urls[@]}\"; do\n local file=\"${url##*/}\"\n rm -f \"${file}\"\n if ! curl -f --ipv4 -Lo \"${file}\" --connect-timeout 20 --max-time 300 --retry 6 --retry-delay 10 \"${url}\"; then\n echo \"== Failed to download ${url}. Retrying. ==\"\n elif [[ -n \"${hash}\" ]] && ! validate-hash \"${file}\" \"${hash}\"; then\n echo \"== Hash validation of ${url} failed. Retrying. ==\"\n else\n if [[ -n \"${hash}\" ]]; then\n echo \"== Downloaded ${url} (SHA1 = ${hash}) ==\"\n else\n echo \"== Downloaded ${url} ==\"\n fi\n return\n fi\n done\n done\n}\n\nfunction split-commas {\n echo $1 | tr \",\" \"\\n\"\n}\n\nfunction install-gci-mounter-tools {\n CONTAINERIZED_MOUNTER_HOME=\"${KUBE_HOME}/containerized_mounter\"\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}\"\n chmod a+x \"${CONTAINERIZED_MOUNTER_HOME}\"\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}/rootfs\"\n local -r mounter_tar_sha=\"8003b798cf33c7f91320cd6ee5cec4fa22244571\"\n download-or-bust \"${mounter_tar_sha}\" \"https://storage.googleapis.com/kubernetes-release/gci-mounter/mounter.tar\"\n cp \"${dst_dir}/kubernetes/gci-trusty/gci-mounter\" \"${CONTAINERIZED_MOUNTER_HOME}/mounter\"\n chmod a+x \"${CONTAINERIZED_MOUNTER_HOME}/mounter\"\n mv \"${KUBE_HOME}/mounter.tar\" /tmp/mounter.tar\n tar xvf /tmp/mounter.tar -C \"${CONTAINERIZED_MOUNTER_HOME}/rootfs\"\n rm /tmp/mounter.tar\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}/rootfs/var/lib/kubelet\"\n}\n\n# Install node problem detector binary.\nfunction install-node-problem-detector {\n if [[ -n \"${NODE_PROBLEM_DETECTOR_VERSION:-}\" ]]; then\n local -r npd_version=\"${NODE_PROBLEM_DETECTOR_VERSION}\"\n local -r npd_sha1=\"${NODE_PROBLEM_DETECTOR_TAR_HASH}\"\n else\n local -r npd_version=\"v0.4.1\"\n local -r npd_sha1=\"a57a3fe64cab8a18ec654f5cef0aec59dae62568\"\n fi\n local -r npd_release_path=\"https://storage.googleapis.com/kubernetes-release\"\n local -r npd_tar=\"node-problem-detector-${npd_version}.tar.gz\"\n download-or-bust \"${npd_sha1}\" \"${npd_release_path}/node-problem-detector/${npd_tar}\"\n local -r npd_dir=\"${KUBE_HOME}/node-problem-detector\"\n mkdir -p \"${npd_dir}\"\n tar xzf \"${KUBE_HOME}/${npd_tar}\" -C \"${npd_dir}\" --overwrite\n mv \"${npd_dir}/bin\"/* \"${KUBE_HOME}/bin\"\n chmod a+x \"${KUBE_HOME}/bin/node-problem-detector\"\n rmdir \"${npd_dir}/bin\"\n rm -f \"${KUBE_HOME}/${npd_tar}\"\n}\n\n# Downloads kubernetes binaries and kube-system manifest tarball, unpacks them,\n# and places them into suitable directories. Files are placed in /home/kubernetes.\nfunction install-kube-binary-config {\n cd \"${KUBE_HOME}\"\n local -r server_binary_tar_urls=( $(split-commas \"${SERVER_BINARY_TAR_URL}\") )\n local -r server_binary_tar=\"${server_binary_tar_urls[0]##*/}\"\n if [[ -n \"${SERVER_BINARY_TAR_HASH:-}\" ]]; then\n local -r server_binary_tar_hash=\"${SERVER_BINARY_TAR_HASH}\"\n else\n echo \"Downloading binary release sha1 (not found in env)\"\n download-or-bust \"\" \"${server_binary_tar_urls[@]/.tar.gz/.tar.gz.sha1}\"\n local -r server_binary_tar_hash=$(cat \"${server_binary_tar}.sha1\")\n fi\n echo \"Downloading binary release tar\"\n download-or-bust \"${server_binary_tar_hash}\" \"${server_binary_tar_urls[@]}\"\n tar xzf \"${KUBE_HOME}/${server_binary_tar}\" -C \"${KUBE_HOME}\" --overwrite\n # Copy docker_tag and image files to ${KUBE_HOME}/kube-docker-files.\n src_dir=\"${KUBE_HOME}/kubernetes/server/bin\"\n dst_dir=\"${KUBE_HOME}/kube-docker-files\"\n mkdir -p \"${dst_dir}\"\n cp \"${src_dir}/\"*.docker_tag \"${dst_dir}\"\n if [[ \"${KUBERNETES_MASTER:-}\" == \"false\" ]]; then\n cp \"${src_dir}/kube-proxy.tar\" \"${dst_dir}\"\n if [[ \"${ENABLE_NODE_PROBLEM_DETECTOR:-}\" == \"standalone\" ]]; then\n install-node-problem-detector\n fi\n else\n cp \"${src_dir}/kube-apiserver.tar\" \"${dst_dir}\"\n cp \"${src_dir}/kube-controller-manager.tar\" \"${dst_dir}\"\n cp \"${src_dir}/kube-scheduler.tar\" \"${dst_dir}\"\n cp -r \"${KUBE_HOME}/kubernetes/addons\" \"${dst_dir}\"\n fi\n local -r kube_bin=\"${KUBE_HOME}/bin\"\n mv \"${src_dir}/kubelet\" \"${kube_bin}\"\n mv \"${src_dir}/kubectl\" \"${kube_bin}\"\n\n if [[ \"${NETWORK_PROVIDER:-}\" == \"kubenet\" ]] || \\\n [[ \"${NETWORK_PROVIDER:-}\" == \"cni\" ]]; then\n #TODO(andyzheng0831): We should make the cni version number as a k8s env variable.\n local -r cni_tar=\"cni-0799f5732f2a11b329d9e3d51b9c8f2e3759f2ff.tar.gz\"\n local -r cni_sha1=\"1d9788b0f5420e1a219aad2cb8681823fc515e7c\"\n download-or-bust \"${cni_sha1}\" \"https://storage.googleapis.com/kubernetes-release/network-plugins/${cni_tar}\"\n local -r cni_dir=\"${KUBE_HOME}/cni\"\n mkdir -p \"${cni_dir}\"\n tar xzf \"${KUBE_HOME}/${cni_tar}\" -C \"${cni_dir}\" --overwrite\n mv \"${cni_dir}/bin\"/* \"${kube_bin}\"\n rmdir \"${cni_dir}/bin\"\n rm -f \"${KUBE_HOME}/${cni_tar}\"\n fi\n\n mv \"${KUBE_HOME}/kubernetes/LICENSES\" \"${KUBE_HOME}\"\n mv \"${KUBE_HOME}/kubernetes/kubernetes-src.tar.gz\" \"${KUBE_HOME}\"\n\n # Put kube-system pods manifests in ${KUBE_HOME}/kube-manifests/.\n dst_dir=\"${KUBE_HOME}/kube-manifests\"\n mkdir -p \"${dst_dir}\"\n local -r manifests_tar_urls=( $(split-commas \"${KUBE_MANIFESTS_TAR_URL}\") )\n local -r manifests_tar=\"${manifests_tar_urls[0]##*/}\"\n if [ -n \"${KUBE_MANIFESTS_TAR_HASH:-}\" ]; then\n local -r manifests_tar_hash=\"${KUBE_MANIFESTS_TAR_HASH}\"\n else\n echo \"Downloading k8s manifests sha1 (not found in env)\"\n download-or-bust \"\" \"${manifests_tar_urls[@]/.tar.gz/.tar.gz.sha1}\"\n local -r manifests_tar_hash=$(cat \"${manifests_tar}.sha1\")\n fi\n echo \"Downloading k8s manifests tar\"\n download-or-bust \"${manifests_tar_hash}\" \"${manifests_tar_urls[@]}\"\n tar xzf \"${KUBE_HOME}/${manifests_tar}\" -C \"${dst_dir}\" --overwrite\n local -r kube_addon_registry=\"${KUBE_ADDON_REGISTRY:-gcr.io/google_containers}\"\n if [[ \"${kube_addon_registry}\" != \"gcr.io/google_containers\" ]]; then\n find \"${dst_dir}\" -name \\*.yaml -or -name \\*.yaml.in | \\\n xargs sed -ri \"s@(image:\\s.*)gcr.io/google_containers@\\1${kube_addon_registry}@\"\n find \"${dst_dir}\" -name \\*.manifest -or -name \\*.json | \\\n xargs sed -ri \"s@(image\\\":\\s+\\\")gcr.io/google_containers@\\1${kube_addon_registry}@\"\n fi\n cp \"${dst_dir}/kubernetes/gci-trusty/gci-configure-helper.sh\" \"${KUBE_HOME}/bin/configure-helper.sh\"\n cp \"${dst_dir}/kubernetes/gci-trusty/health-monitor.sh\" \"${KUBE_HOME}/bin/health-monitor.sh\"\n chmod -R 755 \"${kube_bin}\"\n\n # Install gci mounter related artifacts to allow mounting storage volumes in GCI\n install-gci-mounter-tools\n \n # Clean up.\n rm -rf \"${KUBE_HOME}/kubernetes\"\n rm -f \"${KUBE_HOME}/${server_binary_tar}\"\n rm -f \"${KUBE_HOME}/${server_binary_tar}.sha1\"\n rm -f \"${KUBE_HOME}/${manifests_tar}\"\n rm -f \"${KUBE_HOME}/${manifests_tar}.sha1\"\n}\n\n######### Main Function ##########\necho \"Start to install kubernetes files\"\nset-broken-motd\nKUBE_HOME=\"/home/kubernetes\"\ndownload-kube-env\nsource \"${KUBE_HOME}/kube-env\"\nif [[ \"${KUBERNETES_MASTER:-}\" == \"true\" ]]; then\n download-kube-master-certs\nfi\ninstall-kube-binary-config\necho \"Done for installing kubernetes files\"\n\n" + }, + { + "key": "cluster-name", + "value": "tachoi-cluster" + }, + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/gke-tachoi-cluster-default-pool-8f292535" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/australia-southeast1-a/instanceGroupManagers/gke-tachoi-cluster-default-pool-8f292535-grp" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/compute", + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/instances/gke-tachoi-cluster-default-pool-8f292535-2rp9", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Broadwell", + "labels": { + "goog-gke-node": "" + }, + "labelFingerprint": "2ixRno2sGuM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "5285513969323224839", + "creationTimestamp": "2018-01-03T18:31:05.780-08:00", + "name": "gke-tachoi-cluster-default-pool-8f292535-9l68", + "tags": { + "items": [ + "gke-tachoi-cluster-4866da88-node" + ], + "fingerprint": "HFNr93BfW4U=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a", + "canIpForward": true, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/australia-southeast1/subnetworks/default", + "networkIP": "10.152.0.5", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "external-nat", + "natIP": "35.189.57.134" + } + ], + "fingerprint": "IqUcHSwVung=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/disks/gke-tachoi-cluster-default-pool-8f292535-9l68", + "deviceName": "persistent-disk-0", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos", + "https://www.googleapis.com/compute/v1/projects/gke-node-images/global/licenses/gke-node" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "LaMqxao2FPg=", + "items": [ + { + "key": "kube-env", + "value": "ALLOCATE_NODE_CIDRS: \"true\"\nCA_CERT: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURDekNDQWZPZ0F3SUJBZ0lRS0Fzci9qS3crZXVZSlVzNTJOMGk3VEFOQmdrcWhraUc5dzBCQVFzRkFEQXYKTVMwd0t3WURWUVFERXlSaVpEYzJPRGt4WXkwNFlqQmlMVFF4WldZdE9EVmtZeTB4WVRsbFlXRTJORGhpWldJdwpIaGNOTVRnd01UQTBNREV6TURJNFdoY05Nak13TVRBek1ESXpNREk0V2pBdk1TMHdLd1lEVlFRREV5UmlaRGMyCk9Ea3hZeTA0WWpCaUxUUXhaV1l0T0RWa1l5MHhZVGxsWVdFMk5EaGlaV0l3Z2dFaU1BMEdDU3FHU0liM0RRRUIKQVFVQUE0SUJEd0F3Z2dFS0FvSUJBUUNvQjMwY3BIVDdlVzVPS2x0V2JiM1RkL09VOSs4ZEhEV3ZaNk1KRXdQZAp4OUZNRERCUEF2VHZsRDBSakhEMzBjZ1pNS3UreUVpVkp5Q214T2swOEZ5a2p6bUFUV1R0aUpJRHR1Y21vNEpMCjhic3luQmM5cHZSNGprNm5HSzdYdFdVK1ZTZDllRWJNQWl2MTAyU0h6L1ZTSDZqa2ZMVVVqbk9FQWQ3VVhiVnAKWDNFMVRjZm45bUFSbFVrM3FnUzdQNnlQMFU0eWJncDF1Y2FwZXdaM2hoYkpLblVHSVBnSnhrcDhlT3NIbjcvVwpLS3pWVzlFSmtTVnFqaHhRaStYUis3Z29EUXpZUmtpUlpDbXhlK0FONVl0MXJQK2FjenpGNWtaZk1SWC9BU1NnCnhTRmRvako3bG9vOEZjUGF6ZFVYRVZYK1Zva0ExN290YncxMlp2UFpEeDd0QWdNQkFBR2pJekFoTUE0R0ExVWQKRHdFQi93UUVBd0lDQkRBUEJnTlZIUk1CQWY4RUJUQURBUUgvTUEwR0NTcUdTSWIzRFFFQkN3VUFBNElCQVFBUwprOVh2cXNyVkdiQkg1NFAxbVArTEcvaHZ1VjhGNm4yMDNFK2thTWFXUnRyQWYzQkFiMWY4bFZ2eVJnbFloeUhCClIyZUo3cUMrOXo0SGtPbHhud0ZtWnlaWEgvRUY1VjlyVUZQQ3BXUTNZWlpqYk13NmJGdXpFc3dUMnI4QVVhM1QKN3k5WWdvTEJsVC9ZVTRhbU5IelhuUjlwMjRNM1A1K0NhdThYMEZnNnl6UFRpZ0hsMlRYd1dCZjFZZEVybjkzcAp1d3kwU1hRTmxDTEhpMUdackZoUjlnSTRJQVRSKzgvdGlHcnZkN0Fkd3paZGxVaEFWRndZZHA1MVB5SUVEcEdMCkcyZzVTUTFyamtlTmFtUzRvZ3V6UHFSRVhLcVZCVk5Tc2NQdzVTekJtN0doTDVyYVVaM1lkUG4zNkN0NmVXOVIKVkhodFdENWtxWFJKb3FZVVltSjgKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\nCLUSTER_IP_RANGE: 10.48.0.0/14\nCLUSTER_NAME: tachoi-cluster\nDISABLE_DOCKER_LIVE_RESTORE: \"true\"\nDNS_DOMAIN: cluster.local\nDNS_SERVER_IP: 10.51.240.10\nDOCKER_REGISTRY_MIRROR_URL: https://mirror.gcr.io\nDOCKER_STORAGE_DRIVER: overlay\nELASTICSEARCH_LOGGING_REPLICAS: \"1\"\nENABLE_CLUSTER_DNS: \"true\"\nENABLE_CLUSTER_LOGGING: \"false\"\nENABLE_CLUSTER_MONITORING: stackdriver\nENABLE_CLUSTER_REGISTRY: \"false\"\nENABLE_CLUSTER_UI: \"true\"\nENABLE_L7_LOADBALANCING: glbc\nENABLE_METRICS_SERVER: \"false\"\nENABLE_NODE_LOGGING: \"true\"\nENABLE_NODE_PROBLEM_DETECTOR: standalone\nENV_TIMESTAMP: 2018-01-04T02:30:28+00:00\nEVICTION_HARD: memory.available\u003c100Mi,nodefs.available\u003c10%,nodefs.inodesFree\u003c5%\nEXTRA_DOCKER_OPTS: --insecure-registry 10.0.0.0/8\nFEATURE_GATES: ExperimentalCriticalPodAnnotation=true\nHPA_USE_REST_CLIENTS: \"false\"\nINSTANCE_PREFIX: gke-tachoi-cluster-4866da88\nKUBE_ADDON_REGISTRY: asia.gcr.io/google_containers\nKUBE_MANIFESTS_TAR_HASH: c0940432742d2102f68266242412e37b0881c958\nKUBE_MANIFESTS_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz\nKUBE_PROXY_TOKEN: 5gRQETqOuI0b0us_TIvCiZ7M_5twdLTwT2z9kwaVWlY=\nKUBELET_CERT: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUMyekNDQWNPZ0F3SUJBZ0lRU1c5aVl3cUlrMVpiT3UyZ2JrRVlQREFOQmdrcWhraUc5dzBCQVFzRkFEQXYKTVMwd0t3WURWUVFERXlSaVpEYzJPRGt4WXkwNFlqQmlMVFF4WldZdE9EVmtZeTB4WVRsbFlXRTJORGhpWldJdwpIaGNOTVRnd01UQTBNREl6TURJNVdoY05Nak13TVRBek1ESXpNREk1V2pBU01SQXdEZ1lEVlFRREV3ZHJkV0psCmJHVjBNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTBic09JSzEwa0dtN0s3QlgKb25uMXJPWStMVThENEs5V0hJa0doM1RsaDNteERUYkZ3dXQyUkxmeFpmSWZldHg4YmFGZmtOVCsvQ2hLWEsraApqWXdlWjFsV0JBdzljdTJuQ3JBOHJad3NaRm9tM2R3K0poczJnbU9kcWc0VXhkaUN6bWo1ZFk4MHROSzRDQ1lICit0bmp1azRGUWU5SVRMeTVEMGVLd0V0RVVUalhhRGd1OGxibGxiNmhSU2Y3bHVsM0kzQzBMNFpQRElpSVB4SnkKNXhpVU43cUc0WTFBWFNxcW53YkMrbVJ6QVEwK1Z5SFVFWHVhTUo3YVpnNGRyY2JKZkEyZWUrWjlDQXJLNkRQSgoxS2tIMG1FV1NzS0pGWENOdFpjUmpnM0V2a05sYzE1bnNFOWMvcVpxWWowM1FCTEl0M0JqNzFVUitBYjlVY0w5CkV6eThtUUlEQVFBQm94QXdEakFNQmdOVkhSTUJBZjhFQWpBQU1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQVEKdjRvZWhjS1FwK3NwenllL0pTaTY0eXBzRmI5M05JeTZTaVAwWU9QVURibk9pNGUvSnhvZFNKeWgzREtLcjIrTwpDbTQrRWxDNDJnVkx6L2FZbXUxNWRXRVhFZTQrL1IxSW45eG9Hb01qM3VJd1U5MUd5SlltM0dPenlNd2lnUTJzCmlHTjljWE0wblZqUzlBa09uWlZjVE1CMGpNU1BORnlXVnprdzdudkZJTlkxVEM4b3BZUGxJTVBJWlpZVFYvdkEKaGNNcWxwenhLV3lqMUF0bHk0MWdGS0w1clV5ZWllT3p6YkZzUUVyNDZmNjQ3MFBIZ1o2QmdGZm9KcUUyamtvUwpyczJOWWZ6ZmdrRUhFUFBMakVJQlZiclozYm5TREJLdnhBVjAyRVl4bUI0UzVQY05CTC84Zjc3SThlZ2ozTTZiCjh3YVF3U29LeWFxbG9GYVVndWQ0Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\nKUBELET_KEY: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFb2dJQkFBS0NBUUVBMGJzT0lLMTBrR203SzdCWG9ubjFyT1krTFU4RDRLOVdISWtHaDNUbGgzbXhEVGJGCnd1dDJSTGZ4WmZJZmV0eDhiYUZma05UKy9DaEtYSytoall3ZVoxbFdCQXc5Y3UybkNyQThyWndzWkZvbTNkdysKSmhzMmdtT2RxZzRVeGRpQ3ptajVkWTgwdE5LNENDWUgrdG5qdWs0RlFlOUlUTHk1RDBlS3dFdEVVVGpYYURndQo4bGJsbGI2aFJTZjdsdWwzSTNDMEw0WlBESWlJUHhKeTV4aVVON3FHNFkxQVhTcXFud2JDK21SekFRMCtWeUhVCkVYdWFNSjdhWmc0ZHJjYkpmQTJlZStaOUNBcks2RFBKMUtrSDBtRVdTc0tKRlhDTnRaY1JqZzNFdmtObGMxNW4Kc0U5Yy9xWnFZajAzUUJMSXQzQmo3MVVSK0FiOVVjTDlFenk4bVFJREFRQUJBb0lCQUFyekRwWkRLQUpBR3Q3NQppbUczcDAxYkNlVDRxcFdvNGNDRW9Od2lqTGNwY2Naa1ZTZkxmald4T3IrZFIrcDBwMlJiMSs3cVI5T25VTmFNCjdzekNnM1hXMHFoTWNVcldRSEhNNktZUnNMbWVnVWYwN3lPektRSGVySVVMemliVUdtUW5VOXJBMnJvVUJEcWMKcmE3NWdDdWlWaUR1bXFJeStpQmpsa2xheEpyTzJqSk5JYW91WHluRVppNEhKRWhzbUxIaW5kMHBmNUFIOXViTgppcGpwQ21Zd21GaTkzNlEvODJOYkZiVnhyT2toVnFKcmJRWGpKZHRFa0RtQXlYc2NYZWg3WnF0RGxVRkgxRGZjCmduc1RnKzFjc3hKbm1LcTJleFJQdUcwd1gzYWZwejZrUkREN1l5VkJSYXIwL296bWU5aDgxOHJNaXJtVHdvWHIKWmRtaTRmOENnWUVBNkJPOVhQcXRwOEdDdDZsUkNoeS9qQ1I0WFNQMXFMVXBTbE1ncTc2VHBHVm5mNGw2TkpoSwpXNDVuWmptOThIa3FNeFZYdFBhaTZoWW1UOFJyOWVzSlBpNnBEakZOMFlFZVVSS2M3eXVNaU9Dc1FCNllwSVl1CnZuNWl2UnA5VlFxcHVRc0RQaDRlOFZ1d25VNnQxcCtIT3QxaE1tZ3JVU05UbFc3KzdqU1ZrTjhDZ1lFQTUxbWUKTFBhNUhYNzRpa3JTWkxKVGIwZmxzT0ppNnRaMEZhWGcvUFZMUTVxVlI2bzJHN3Z0bmQycjQ5YjBxOWkyV3lXQQpzR0pBRW4vU1p1L1NDcnpnMjdWeUdFMjRVV0RDUFZQTGs4eDI2cklQeVZVNlQ0Zk5KRVBtekN2NXZFZjJLWHg3CmJEZk1ySzdKdkwrUHRxM2NWNlZvbnZyL2x2ODgyQzIrRFY3cWlZY0NnWUFvS3RwNGtFNmtIV01SaExXcENXYkIKeThJbFpNYnRCMFg1UGtBR1dicldGbEwraVAza3dvTUVLN2FMdyt5ekJWV2ZkODh4WEFyQWQwcjBQV3Z1S1ZyMQpMMEJGVzVVN2NKeWRyWm9KNzBDb3BESkwrcit5b2lMUEI3THhSZmR4VTZJaWk5eG8wTy9NR0hHT0dJTVFCWlp6ClFzUEM1TEt5bldtbkVJb0JFb3JjZ3dLQmdCWCs4RW9JSHl1TndlV3NIWHJUZFpsVDlhT3Vzb2J2WXRRWUZGOFkKbDFKVEpUUk9HNXpoYmtNZksxT2JRV0lCVmIwdXdLQ0VodUQ3WkM3RFNHNGE3U29XZzBXS1JpYitreGt2bVdCeApCVEZsUXBqNjBITjFUdXpPdytmUG1vdnJMNTFjSjRQdmZqZEEydzltQ3l6c05OSGtlU0Q4YmthVjk5djU1V0x5CkRreUxBb0dBUnZERVBWQUh2d3pMU1Zyc2tOWWppR2VncG1mVnh6UVdOQUVsWlltWXJ2M1BzTWtTcS9MRnZnNEcKS3Zzd1k5a2pCbm9vTHN1eGVtRGRLVmw5MDNKTy9WQ3JVaVRJVjJsRDlrTk9EeGl6cUZjekladUY3UE5sZ2k0ZQp6THBCQ1E5Q1hYYVRBU0pHeU42enM4QVBVNVhIZVVDLzNXckVQanBOZjFLZldtTFp3MDQ9Ci0tLS0tRU5EIFJTQSBQUklWQVRFIEtFWS0tLS0tCg==\nKUBELET_TEST_ARGS: --docker-disable-shared-pid --kube-reserved=cpu=60m,memory=960Mi\nKUBERNETES_MASTER: \"false\"\nKUBERNETES_MASTER_NAME: 35.201.28.223\nLOGGING_DESTINATION: gcp\nNETWORK_PROVIDER: kubenet\nNODE_LABELS: beta.kubernetes.io/fluentd-ds-ready=true,cloud.google.com/gke-nodepool=default-pool\nNODE_LOCAL_SSDS_EXT: \"\"\nNODE_PROBLEM_DETECTOR_TOKEN: BXhTLGIjOH_1PMvnEDMTJgrbxWg_chQruMHYDpFTtCc=\nSALT_TAR_HASH: 754852fefa25d0c9d9ec499afab62605c97b6449\nSALT_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-salt.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-salt.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-salt.tar.gz\nSERVER_BINARY_TAR_HASH: 26c86bce55e2d139168d626232eabfa3a776b28b\nSERVER_BINARY_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz\nSERVICE_CLUSTER_IP_RANGE: 10.51.240.0/20\nZONE: australia-southeast1-a\n" + }, + { + "key": "user-data", + "value": "#cloud-config\n\nwrite_files:\n - path: /etc/systemd/system/kube-node-installation.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Download and install k8s binaries and configurations\n After=network-online.target\n\n [Service]\n Type=oneshot\n RemainAfterExit=yes\n ExecStartPre=/bin/mkdir -p /home/kubernetes/bin\n ExecStartPre=/bin/mount --bind /home/kubernetes/bin /home/kubernetes/bin\n ExecStartPre=/bin/mount -o remount,exec /home/kubernetes/bin\n ExecStartPre=/usr/bin/curl --fail --retry 5 --retry-delay 3 --silent --show-error\t-H \"X-Google-Metadata-Request: True\" -o /home/kubernetes/bin/configure.sh http://metadata.google.internal/computeMetadata/v1/instance/attributes/configure-sh\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/configure.sh\n ExecStart=/home/kubernetes/bin/configure.sh\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-node-configuration.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Configure kubernetes node\n After=kube-node-installation.service\n\n [Service]\n Type=oneshot\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/configure-helper.sh\n ExecStart=/home/kubernetes/bin/configure-helper.sh\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-docker-monitor.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes health monitoring for docker\n After=kube-node-configuration.service\n\n [Service]\n Restart=always\n RestartSec=10\n RemainAfterExit=yes\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh\n ExecStart=/home/kubernetes/bin/health-monitor.sh docker\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kubelet-monitor.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes health monitoring for kubelet\n After=kube-node-configuration.service\n\n [Service]\n Restart=always\n RestartSec=10\n RemainAfterExit=yes\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh\n ExecStart=/home/kubernetes/bin/health-monitor.sh kubelet\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-logrotate.timer\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Hourly kube-logrotate invocation\n\n [Timer]\n OnCalendar=hourly\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-logrotate.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes log rotation\n After=kube-node-configuration.service\n\n [Service]\n Type=oneshot\n ExecStart=-/usr/sbin/logrotate /etc/logrotate.conf\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kubernetes.target\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes\n\n [Install]\n WantedBy=multi-user.target\n\nruncmd:\n - systemctl daemon-reload\n - systemctl enable kube-node-installation.service\n - systemctl enable kube-node-configuration.service\n - systemctl enable kube-docker-monitor.service\n - systemctl enable kubelet-monitor.service\n - systemctl enable kube-logrotate.timer\n - systemctl enable kube-logrotate.service\n - systemctl enable kubernetes.target\n - systemctl start kubernetes.target\n" + }, + { + "key": "gci-update-strategy", + "value": "update_disabled" + }, + { + "key": "gci-ensure-gke-docker", + "value": "true" + }, + { + "key": "configure-sh", + "value": "#!/bin/bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n# Due to the GCE custom metadata size limit, we split the entire script into two\n# files configure.sh and configure-helper.sh. The functionality of downloading\n# kubernetes configuration, manifests, docker images, and binary files are\n# put in configure.sh, which is uploaded via GCE custom metadata.\n\nset -o errexit\nset -o nounset\nset -o pipefail\n\nfunction set-broken-motd {\n cat \u003e /etc/motd \u003c\u003cEOF\nBroken (or in progress) Kubernetes node setup! Check the cluster initialization status\nusing the following commands.\n\nMaster instance:\n - sudo systemctl status kube-master-installation\n - sudo systemctl status kube-master-configuration\n\nNode instance:\n - sudo systemctl status kube-node-installation\n - sudo systemctl status kube-node-configuration\nEOF\n}\n\nfunction download-kube-env {\n # Fetch kube-env from GCE metadata server.\n local -r tmp_kube_env=\"/tmp/kube-env.yaml\"\n curl --fail --retry 5 --retry-delay 3 --silent --show-error \\\n -H \"X-Google-Metadata-Request: True\" \\\n -o \"${tmp_kube_env}\" \\\n http://metadata.google.internal/computeMetadata/v1/instance/attributes/kube-env\n # Convert the yaml format file into a shell-style file.\n eval $(python -c '''\nimport pipes,sys,yaml\nfor k,v in yaml.load(sys.stdin).iteritems():\n print(\"readonly {var}={value}\".format(var = k, value = pipes.quote(str(v))))\n''' \u003c \"${tmp_kube_env}\" \u003e \"${KUBE_HOME}/kube-env\")\n rm -f \"${tmp_kube_env}\"\n}\n\nfunction download-kube-master-certs {\n # Fetch kube-env from GCE metadata server.\n local -r tmp_kube_master_certs=\"/tmp/kube-master-certs.yaml\"\n curl --fail --retry 5 --retry-delay 3 --silent --show-error \\\n -H \"X-Google-Metadata-Request: True\" \\\n -o \"${tmp_kube_master_certs}\" \\\n http://metadata.google.internal/computeMetadata/v1/instance/attributes/kube-master-certs\n # Convert the yaml format file into a shell-style file.\n eval $(python -c '''\nimport pipes,sys,yaml\nfor k,v in yaml.load(sys.stdin).iteritems():\n print(\"readonly {var}={value}\".format(var = k, value = pipes.quote(str(v))))\n''' \u003c \"${tmp_kube_master_certs}\" \u003e \"${KUBE_HOME}/kube-master-certs\")\n rm -f \"${tmp_kube_master_certs}\"\n}\n\nfunction validate-hash {\n local -r file=\"$1\"\n local -r expected=\"$2\"\n\n actual=$(sha1sum ${file} | awk '{ print $1 }') || true\n if [[ \"${actual}\" != \"${expected}\" ]]; then\n echo \"== ${file} corrupted, sha1 ${actual} doesn't match expected ${expected} ==\"\n return 1\n fi\n}\n\n# Retry a download until we get it. Takes a hash and a set of URLs.\n#\n# $1 is the sha1 of the URL. Can be \"\" if the sha1 is unknown.\n# $2+ are the URLs to download.\nfunction download-or-bust {\n local -r hash=\"$1\"\n shift 1\n\n local -r urls=( $* )\n while true; do\n for url in \"${urls[@]}\"; do\n local file=\"${url##*/}\"\n rm -f \"${file}\"\n if ! curl -f --ipv4 -Lo \"${file}\" --connect-timeout 20 --max-time 300 --retry 6 --retry-delay 10 \"${url}\"; then\n echo \"== Failed to download ${url}. Retrying. ==\"\n elif [[ -n \"${hash}\" ]] && ! validate-hash \"${file}\" \"${hash}\"; then\n echo \"== Hash validation of ${url} failed. Retrying. ==\"\n else\n if [[ -n \"${hash}\" ]]; then\n echo \"== Downloaded ${url} (SHA1 = ${hash}) ==\"\n else\n echo \"== Downloaded ${url} ==\"\n fi\n return\n fi\n done\n done\n}\n\nfunction split-commas {\n echo $1 | tr \",\" \"\\n\"\n}\n\nfunction install-gci-mounter-tools {\n CONTAINERIZED_MOUNTER_HOME=\"${KUBE_HOME}/containerized_mounter\"\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}\"\n chmod a+x \"${CONTAINERIZED_MOUNTER_HOME}\"\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}/rootfs\"\n local -r mounter_tar_sha=\"8003b798cf33c7f91320cd6ee5cec4fa22244571\"\n download-or-bust \"${mounter_tar_sha}\" \"https://storage.googleapis.com/kubernetes-release/gci-mounter/mounter.tar\"\n cp \"${dst_dir}/kubernetes/gci-trusty/gci-mounter\" \"${CONTAINERIZED_MOUNTER_HOME}/mounter\"\n chmod a+x \"${CONTAINERIZED_MOUNTER_HOME}/mounter\"\n mv \"${KUBE_HOME}/mounter.tar\" /tmp/mounter.tar\n tar xvf /tmp/mounter.tar -C \"${CONTAINERIZED_MOUNTER_HOME}/rootfs\"\n rm /tmp/mounter.tar\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}/rootfs/var/lib/kubelet\"\n}\n\n# Install node problem detector binary.\nfunction install-node-problem-detector {\n if [[ -n \"${NODE_PROBLEM_DETECTOR_VERSION:-}\" ]]; then\n local -r npd_version=\"${NODE_PROBLEM_DETECTOR_VERSION}\"\n local -r npd_sha1=\"${NODE_PROBLEM_DETECTOR_TAR_HASH}\"\n else\n local -r npd_version=\"v0.4.1\"\n local -r npd_sha1=\"a57a3fe64cab8a18ec654f5cef0aec59dae62568\"\n fi\n local -r npd_release_path=\"https://storage.googleapis.com/kubernetes-release\"\n local -r npd_tar=\"node-problem-detector-${npd_version}.tar.gz\"\n download-or-bust \"${npd_sha1}\" \"${npd_release_path}/node-problem-detector/${npd_tar}\"\n local -r npd_dir=\"${KUBE_HOME}/node-problem-detector\"\n mkdir -p \"${npd_dir}\"\n tar xzf \"${KUBE_HOME}/${npd_tar}\" -C \"${npd_dir}\" --overwrite\n mv \"${npd_dir}/bin\"/* \"${KUBE_HOME}/bin\"\n chmod a+x \"${KUBE_HOME}/bin/node-problem-detector\"\n rmdir \"${npd_dir}/bin\"\n rm -f \"${KUBE_HOME}/${npd_tar}\"\n}\n\n# Downloads kubernetes binaries and kube-system manifest tarball, unpacks them,\n# and places them into suitable directories. Files are placed in /home/kubernetes.\nfunction install-kube-binary-config {\n cd \"${KUBE_HOME}\"\n local -r server_binary_tar_urls=( $(split-commas \"${SERVER_BINARY_TAR_URL}\") )\n local -r server_binary_tar=\"${server_binary_tar_urls[0]##*/}\"\n if [[ -n \"${SERVER_BINARY_TAR_HASH:-}\" ]]; then\n local -r server_binary_tar_hash=\"${SERVER_BINARY_TAR_HASH}\"\n else\n echo \"Downloading binary release sha1 (not found in env)\"\n download-or-bust \"\" \"${server_binary_tar_urls[@]/.tar.gz/.tar.gz.sha1}\"\n local -r server_binary_tar_hash=$(cat \"${server_binary_tar}.sha1\")\n fi\n echo \"Downloading binary release tar\"\n download-or-bust \"${server_binary_tar_hash}\" \"${server_binary_tar_urls[@]}\"\n tar xzf \"${KUBE_HOME}/${server_binary_tar}\" -C \"${KUBE_HOME}\" --overwrite\n # Copy docker_tag and image files to ${KUBE_HOME}/kube-docker-files.\n src_dir=\"${KUBE_HOME}/kubernetes/server/bin\"\n dst_dir=\"${KUBE_HOME}/kube-docker-files\"\n mkdir -p \"${dst_dir}\"\n cp \"${src_dir}/\"*.docker_tag \"${dst_dir}\"\n if [[ \"${KUBERNETES_MASTER:-}\" == \"false\" ]]; then\n cp \"${src_dir}/kube-proxy.tar\" \"${dst_dir}\"\n if [[ \"${ENABLE_NODE_PROBLEM_DETECTOR:-}\" == \"standalone\" ]]; then\n install-node-problem-detector\n fi\n else\n cp \"${src_dir}/kube-apiserver.tar\" \"${dst_dir}\"\n cp \"${src_dir}/kube-controller-manager.tar\" \"${dst_dir}\"\n cp \"${src_dir}/kube-scheduler.tar\" \"${dst_dir}\"\n cp -r \"${KUBE_HOME}/kubernetes/addons\" \"${dst_dir}\"\n fi\n local -r kube_bin=\"${KUBE_HOME}/bin\"\n mv \"${src_dir}/kubelet\" \"${kube_bin}\"\n mv \"${src_dir}/kubectl\" \"${kube_bin}\"\n\n if [[ \"${NETWORK_PROVIDER:-}\" == \"kubenet\" ]] || \\\n [[ \"${NETWORK_PROVIDER:-}\" == \"cni\" ]]; then\n #TODO(andyzheng0831): We should make the cni version number as a k8s env variable.\n local -r cni_tar=\"cni-0799f5732f2a11b329d9e3d51b9c8f2e3759f2ff.tar.gz\"\n local -r cni_sha1=\"1d9788b0f5420e1a219aad2cb8681823fc515e7c\"\n download-or-bust \"${cni_sha1}\" \"https://storage.googleapis.com/kubernetes-release/network-plugins/${cni_tar}\"\n local -r cni_dir=\"${KUBE_HOME}/cni\"\n mkdir -p \"${cni_dir}\"\n tar xzf \"${KUBE_HOME}/${cni_tar}\" -C \"${cni_dir}\" --overwrite\n mv \"${cni_dir}/bin\"/* \"${kube_bin}\"\n rmdir \"${cni_dir}/bin\"\n rm -f \"${KUBE_HOME}/${cni_tar}\"\n fi\n\n mv \"${KUBE_HOME}/kubernetes/LICENSES\" \"${KUBE_HOME}\"\n mv \"${KUBE_HOME}/kubernetes/kubernetes-src.tar.gz\" \"${KUBE_HOME}\"\n\n # Put kube-system pods manifests in ${KUBE_HOME}/kube-manifests/.\n dst_dir=\"${KUBE_HOME}/kube-manifests\"\n mkdir -p \"${dst_dir}\"\n local -r manifests_tar_urls=( $(split-commas \"${KUBE_MANIFESTS_TAR_URL}\") )\n local -r manifests_tar=\"${manifests_tar_urls[0]##*/}\"\n if [ -n \"${KUBE_MANIFESTS_TAR_HASH:-}\" ]; then\n local -r manifests_tar_hash=\"${KUBE_MANIFESTS_TAR_HASH}\"\n else\n echo \"Downloading k8s manifests sha1 (not found in env)\"\n download-or-bust \"\" \"${manifests_tar_urls[@]/.tar.gz/.tar.gz.sha1}\"\n local -r manifests_tar_hash=$(cat \"${manifests_tar}.sha1\")\n fi\n echo \"Downloading k8s manifests tar\"\n download-or-bust \"${manifests_tar_hash}\" \"${manifests_tar_urls[@]}\"\n tar xzf \"${KUBE_HOME}/${manifests_tar}\" -C \"${dst_dir}\" --overwrite\n local -r kube_addon_registry=\"${KUBE_ADDON_REGISTRY:-gcr.io/google_containers}\"\n if [[ \"${kube_addon_registry}\" != \"gcr.io/google_containers\" ]]; then\n find \"${dst_dir}\" -name \\*.yaml -or -name \\*.yaml.in | \\\n xargs sed -ri \"s@(image:\\s.*)gcr.io/google_containers@\\1${kube_addon_registry}@\"\n find \"${dst_dir}\" -name \\*.manifest -or -name \\*.json | \\\n xargs sed -ri \"s@(image\\\":\\s+\\\")gcr.io/google_containers@\\1${kube_addon_registry}@\"\n fi\n cp \"${dst_dir}/kubernetes/gci-trusty/gci-configure-helper.sh\" \"${KUBE_HOME}/bin/configure-helper.sh\"\n cp \"${dst_dir}/kubernetes/gci-trusty/health-monitor.sh\" \"${KUBE_HOME}/bin/health-monitor.sh\"\n chmod -R 755 \"${kube_bin}\"\n\n # Install gci mounter related artifacts to allow mounting storage volumes in GCI\n install-gci-mounter-tools\n \n # Clean up.\n rm -rf \"${KUBE_HOME}/kubernetes\"\n rm -f \"${KUBE_HOME}/${server_binary_tar}\"\n rm -f \"${KUBE_HOME}/${server_binary_tar}.sha1\"\n rm -f \"${KUBE_HOME}/${manifests_tar}\"\n rm -f \"${KUBE_HOME}/${manifests_tar}.sha1\"\n}\n\n######### Main Function ##########\necho \"Start to install kubernetes files\"\nset-broken-motd\nKUBE_HOME=\"/home/kubernetes\"\ndownload-kube-env\nsource \"${KUBE_HOME}/kube-env\"\nif [[ \"${KUBERNETES_MASTER:-}\" == \"true\" ]]; then\n download-kube-master-certs\nfi\ninstall-kube-binary-config\necho \"Done for installing kubernetes files\"\n\n" + }, + { + "key": "cluster-name", + "value": "tachoi-cluster" + }, + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/gke-tachoi-cluster-default-pool-8f292535" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/australia-southeast1-a/instanceGroupManagers/gke-tachoi-cluster-default-pool-8f292535-grp" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/compute", + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/instances/gke-tachoi-cluster-default-pool-8f292535-9l68", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Broadwell", + "labels": { + "goog-gke-node": "" + }, + "labelFingerprint": "2ixRno2sGuM=", + "startRestricted": false, + "deletionProtection": false + }, + { + "kind": "compute#instance", + "id": "770026276204326662", + "creationTimestamp": "2018-01-03T18:31:05.780-08:00", + "name": "gke-tachoi-cluster-default-pool-8f292535-f1gn", + "tags": { + "items": [ + "gke-tachoi-cluster-4866da88-node" + ], + "fingerprint": "HFNr93BfW4U=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a", + "canIpForward": true, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/australia-southeast1/subnetworks/default", + "networkIP": "10.152.0.6", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "external-nat", + "natIP": "35.201.28.146" + } + ], + "fingerprint": "Rycx7tUiqtA=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/disks/gke-tachoi-cluster-default-pool-8f292535-f1gn", + "deviceName": "persistent-disk-0", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/cos-cloud/global/licenses/cos", + "https://www.googleapis.com/compute/v1/projects/gke-node-images/global/licenses/gke-node" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "LaMqxao2FPg=", + "items": [ + { + "key": "kube-env", + "value": "ALLOCATE_NODE_CIDRS: \"true\"\nCA_CERT: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURDekNDQWZPZ0F3SUJBZ0lRS0Fzci9qS3crZXVZSlVzNTJOMGk3VEFOQmdrcWhraUc5dzBCQVFzRkFEQXYKTVMwd0t3WURWUVFERXlSaVpEYzJPRGt4WXkwNFlqQmlMVFF4WldZdE9EVmtZeTB4WVRsbFlXRTJORGhpWldJdwpIaGNOTVRnd01UQTBNREV6TURJNFdoY05Nak13TVRBek1ESXpNREk0V2pBdk1TMHdLd1lEVlFRREV5UmlaRGMyCk9Ea3hZeTA0WWpCaUxUUXhaV1l0T0RWa1l5MHhZVGxsWVdFMk5EaGlaV0l3Z2dFaU1BMEdDU3FHU0liM0RRRUIKQVFVQUE0SUJEd0F3Z2dFS0FvSUJBUUNvQjMwY3BIVDdlVzVPS2x0V2JiM1RkL09VOSs4ZEhEV3ZaNk1KRXdQZAp4OUZNRERCUEF2VHZsRDBSakhEMzBjZ1pNS3UreUVpVkp5Q214T2swOEZ5a2p6bUFUV1R0aUpJRHR1Y21vNEpMCjhic3luQmM5cHZSNGprNm5HSzdYdFdVK1ZTZDllRWJNQWl2MTAyU0h6L1ZTSDZqa2ZMVVVqbk9FQWQ3VVhiVnAKWDNFMVRjZm45bUFSbFVrM3FnUzdQNnlQMFU0eWJncDF1Y2FwZXdaM2hoYkpLblVHSVBnSnhrcDhlT3NIbjcvVwpLS3pWVzlFSmtTVnFqaHhRaStYUis3Z29EUXpZUmtpUlpDbXhlK0FONVl0MXJQK2FjenpGNWtaZk1SWC9BU1NnCnhTRmRvako3bG9vOEZjUGF6ZFVYRVZYK1Zva0ExN290YncxMlp2UFpEeDd0QWdNQkFBR2pJekFoTUE0R0ExVWQKRHdFQi93UUVBd0lDQkRBUEJnTlZIUk1CQWY4RUJUQURBUUgvTUEwR0NTcUdTSWIzRFFFQkN3VUFBNElCQVFBUwprOVh2cXNyVkdiQkg1NFAxbVArTEcvaHZ1VjhGNm4yMDNFK2thTWFXUnRyQWYzQkFiMWY4bFZ2eVJnbFloeUhCClIyZUo3cUMrOXo0SGtPbHhud0ZtWnlaWEgvRUY1VjlyVUZQQ3BXUTNZWlpqYk13NmJGdXpFc3dUMnI4QVVhM1QKN3k5WWdvTEJsVC9ZVTRhbU5IelhuUjlwMjRNM1A1K0NhdThYMEZnNnl6UFRpZ0hsMlRYd1dCZjFZZEVybjkzcAp1d3kwU1hRTmxDTEhpMUdackZoUjlnSTRJQVRSKzgvdGlHcnZkN0Fkd3paZGxVaEFWRndZZHA1MVB5SUVEcEdMCkcyZzVTUTFyamtlTmFtUzRvZ3V6UHFSRVhLcVZCVk5Tc2NQdzVTekJtN0doTDVyYVVaM1lkUG4zNkN0NmVXOVIKVkhodFdENWtxWFJKb3FZVVltSjgKLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=\nCLUSTER_IP_RANGE: 10.48.0.0/14\nCLUSTER_NAME: tachoi-cluster\nDISABLE_DOCKER_LIVE_RESTORE: \"true\"\nDNS_DOMAIN: cluster.local\nDNS_SERVER_IP: 10.51.240.10\nDOCKER_REGISTRY_MIRROR_URL: https://mirror.gcr.io\nDOCKER_STORAGE_DRIVER: overlay\nELASTICSEARCH_LOGGING_REPLICAS: \"1\"\nENABLE_CLUSTER_DNS: \"true\"\nENABLE_CLUSTER_LOGGING: \"false\"\nENABLE_CLUSTER_MONITORING: stackdriver\nENABLE_CLUSTER_REGISTRY: \"false\"\nENABLE_CLUSTER_UI: \"true\"\nENABLE_L7_LOADBALANCING: glbc\nENABLE_METRICS_SERVER: \"false\"\nENABLE_NODE_LOGGING: \"true\"\nENABLE_NODE_PROBLEM_DETECTOR: standalone\nENV_TIMESTAMP: 2018-01-04T02:30:28+00:00\nEVICTION_HARD: memory.available\u003c100Mi,nodefs.available\u003c10%,nodefs.inodesFree\u003c5%\nEXTRA_DOCKER_OPTS: --insecure-registry 10.0.0.0/8\nFEATURE_GATES: ExperimentalCriticalPodAnnotation=true\nHPA_USE_REST_CLIENTS: \"false\"\nINSTANCE_PREFIX: gke-tachoi-cluster-4866da88\nKUBE_ADDON_REGISTRY: asia.gcr.io/google_containers\nKUBE_MANIFESTS_TAR_HASH: c0940432742d2102f68266242412e37b0881c958\nKUBE_MANIFESTS_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-manifests.tar.gz\nKUBE_PROXY_TOKEN: 5gRQETqOuI0b0us_TIvCiZ7M_5twdLTwT2z9kwaVWlY=\nKUBELET_CERT: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUMyekNDQWNPZ0F3SUJBZ0lRU1c5aVl3cUlrMVpiT3UyZ2JrRVlQREFOQmdrcWhraUc5dzBCQVFzRkFEQXYKTVMwd0t3WURWUVFERXlSaVpEYzJPRGt4WXkwNFlqQmlMVFF4WldZdE9EVmtZeTB4WVRsbFlXRTJORGhpWldJdwpIaGNOTVRnd01UQTBNREl6TURJNVdoY05Nak13TVRBek1ESXpNREk1V2pBU01SQXdEZ1lEVlFRREV3ZHJkV0psCmJHVjBNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTBic09JSzEwa0dtN0s3QlgKb25uMXJPWStMVThENEs5V0hJa0doM1RsaDNteERUYkZ3dXQyUkxmeFpmSWZldHg4YmFGZmtOVCsvQ2hLWEsraApqWXdlWjFsV0JBdzljdTJuQ3JBOHJad3NaRm9tM2R3K0poczJnbU9kcWc0VXhkaUN6bWo1ZFk4MHROSzRDQ1lICit0bmp1azRGUWU5SVRMeTVEMGVLd0V0RVVUalhhRGd1OGxibGxiNmhSU2Y3bHVsM0kzQzBMNFpQRElpSVB4SnkKNXhpVU43cUc0WTFBWFNxcW53YkMrbVJ6QVEwK1Z5SFVFWHVhTUo3YVpnNGRyY2JKZkEyZWUrWjlDQXJLNkRQSgoxS2tIMG1FV1NzS0pGWENOdFpjUmpnM0V2a05sYzE1bnNFOWMvcVpxWWowM1FCTEl0M0JqNzFVUitBYjlVY0w5CkV6eThtUUlEQVFBQm94QXdEakFNQmdOVkhSTUJBZjhFQWpBQU1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQVEKdjRvZWhjS1FwK3NwenllL0pTaTY0eXBzRmI5M05JeTZTaVAwWU9QVURibk9pNGUvSnhvZFNKeWgzREtLcjIrTwpDbTQrRWxDNDJnVkx6L2FZbXUxNWRXRVhFZTQrL1IxSW45eG9Hb01qM3VJd1U5MUd5SlltM0dPenlNd2lnUTJzCmlHTjljWE0wblZqUzlBa09uWlZjVE1CMGpNU1BORnlXVnprdzdudkZJTlkxVEM4b3BZUGxJTVBJWlpZVFYvdkEKaGNNcWxwenhLV3lqMUF0bHk0MWdGS0w1clV5ZWllT3p6YkZzUUVyNDZmNjQ3MFBIZ1o2QmdGZm9KcUUyamtvUwpyczJOWWZ6ZmdrRUhFUFBMakVJQlZiclozYm5TREJLdnhBVjAyRVl4bUI0UzVQY05CTC84Zjc3SThlZ2ozTTZiCjh3YVF3U29LeWFxbG9GYVVndWQ0Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\nKUBELET_KEY: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFb2dJQkFBS0NBUUVBMGJzT0lLMTBrR203SzdCWG9ubjFyT1krTFU4RDRLOVdISWtHaDNUbGgzbXhEVGJGCnd1dDJSTGZ4WmZJZmV0eDhiYUZma05UKy9DaEtYSytoall3ZVoxbFdCQXc5Y3UybkNyQThyWndzWkZvbTNkdysKSmhzMmdtT2RxZzRVeGRpQ3ptajVkWTgwdE5LNENDWUgrdG5qdWs0RlFlOUlUTHk1RDBlS3dFdEVVVGpYYURndQo4bGJsbGI2aFJTZjdsdWwzSTNDMEw0WlBESWlJUHhKeTV4aVVON3FHNFkxQVhTcXFud2JDK21SekFRMCtWeUhVCkVYdWFNSjdhWmc0ZHJjYkpmQTJlZStaOUNBcks2RFBKMUtrSDBtRVdTc0tKRlhDTnRaY1JqZzNFdmtObGMxNW4Kc0U5Yy9xWnFZajAzUUJMSXQzQmo3MVVSK0FiOVVjTDlFenk4bVFJREFRQUJBb0lCQUFyekRwWkRLQUpBR3Q3NQppbUczcDAxYkNlVDRxcFdvNGNDRW9Od2lqTGNwY2Naa1ZTZkxmald4T3IrZFIrcDBwMlJiMSs3cVI5T25VTmFNCjdzekNnM1hXMHFoTWNVcldRSEhNNktZUnNMbWVnVWYwN3lPektRSGVySVVMemliVUdtUW5VOXJBMnJvVUJEcWMKcmE3NWdDdWlWaUR1bXFJeStpQmpsa2xheEpyTzJqSk5JYW91WHluRVppNEhKRWhzbUxIaW5kMHBmNUFIOXViTgppcGpwQ21Zd21GaTkzNlEvODJOYkZiVnhyT2toVnFKcmJRWGpKZHRFa0RtQXlYc2NYZWg3WnF0RGxVRkgxRGZjCmduc1RnKzFjc3hKbm1LcTJleFJQdUcwd1gzYWZwejZrUkREN1l5VkJSYXIwL296bWU5aDgxOHJNaXJtVHdvWHIKWmRtaTRmOENnWUVBNkJPOVhQcXRwOEdDdDZsUkNoeS9qQ1I0WFNQMXFMVXBTbE1ncTc2VHBHVm5mNGw2TkpoSwpXNDVuWmptOThIa3FNeFZYdFBhaTZoWW1UOFJyOWVzSlBpNnBEakZOMFlFZVVSS2M3eXVNaU9Dc1FCNllwSVl1CnZuNWl2UnA5VlFxcHVRc0RQaDRlOFZ1d25VNnQxcCtIT3QxaE1tZ3JVU05UbFc3KzdqU1ZrTjhDZ1lFQTUxbWUKTFBhNUhYNzRpa3JTWkxKVGIwZmxzT0ppNnRaMEZhWGcvUFZMUTVxVlI2bzJHN3Z0bmQycjQ5YjBxOWkyV3lXQQpzR0pBRW4vU1p1L1NDcnpnMjdWeUdFMjRVV0RDUFZQTGs4eDI2cklQeVZVNlQ0Zk5KRVBtekN2NXZFZjJLWHg3CmJEZk1ySzdKdkwrUHRxM2NWNlZvbnZyL2x2ODgyQzIrRFY3cWlZY0NnWUFvS3RwNGtFNmtIV01SaExXcENXYkIKeThJbFpNYnRCMFg1UGtBR1dicldGbEwraVAza3dvTUVLN2FMdyt5ekJWV2ZkODh4WEFyQWQwcjBQV3Z1S1ZyMQpMMEJGVzVVN2NKeWRyWm9KNzBDb3BESkwrcit5b2lMUEI3THhSZmR4VTZJaWk5eG8wTy9NR0hHT0dJTVFCWlp6ClFzUEM1TEt5bldtbkVJb0JFb3JjZ3dLQmdCWCs4RW9JSHl1TndlV3NIWHJUZFpsVDlhT3Vzb2J2WXRRWUZGOFkKbDFKVEpUUk9HNXpoYmtNZksxT2JRV0lCVmIwdXdLQ0VodUQ3WkM3RFNHNGE3U29XZzBXS1JpYitreGt2bVdCeApCVEZsUXBqNjBITjFUdXpPdytmUG1vdnJMNTFjSjRQdmZqZEEydzltQ3l6c05OSGtlU0Q4YmthVjk5djU1V0x5CkRreUxBb0dBUnZERVBWQUh2d3pMU1Zyc2tOWWppR2VncG1mVnh6UVdOQUVsWlltWXJ2M1BzTWtTcS9MRnZnNEcKS3Zzd1k5a2pCbm9vTHN1eGVtRGRLVmw5MDNKTy9WQ3JVaVRJVjJsRDlrTk9EeGl6cUZjekladUY3UE5sZ2k0ZQp6THBCQ1E5Q1hYYVRBU0pHeU42enM4QVBVNVhIZVVDLzNXckVQanBOZjFLZldtTFp3MDQ9Ci0tLS0tRU5EIFJTQSBQUklWQVRFIEtFWS0tLS0tCg==\nKUBELET_TEST_ARGS: --docker-disable-shared-pid --kube-reserved=cpu=60m,memory=960Mi\nKUBERNETES_MASTER: \"false\"\nKUBERNETES_MASTER_NAME: 35.201.28.223\nLOGGING_DESTINATION: gcp\nNETWORK_PROVIDER: kubenet\nNODE_LABELS: beta.kubernetes.io/fluentd-ds-ready=true,cloud.google.com/gke-nodepool=default-pool\nNODE_LOCAL_SSDS_EXT: \"\"\nNODE_PROBLEM_DETECTOR_TOKEN: BXhTLGIjOH_1PMvnEDMTJgrbxWg_chQruMHYDpFTtCc=\nSALT_TAR_HASH: 754852fefa25d0c9d9ec499afab62605c97b6449\nSALT_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-salt.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-salt.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-salt.tar.gz\nSERVER_BINARY_TAR_HASH: 26c86bce55e2d139168d626232eabfa3a776b28b\nSERVER_BINARY_TAR_URL: https://storage.googleapis.com/kubernetes-release-gke-asia/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz,https://storage.googleapis.com/kubernetes-release-gke/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz,https://storage.googleapis.com/kubernetes-release-gke-eu/release/v1.7.11-gke.1/kubernetes-server-linux-amd64.tar.gz\nSERVICE_CLUSTER_IP_RANGE: 10.51.240.0/20\nZONE: australia-southeast1-a\n" + }, + { + "key": "user-data", + "value": "#cloud-config\n\nwrite_files:\n - path: /etc/systemd/system/kube-node-installation.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Download and install k8s binaries and configurations\n After=network-online.target\n\n [Service]\n Type=oneshot\n RemainAfterExit=yes\n ExecStartPre=/bin/mkdir -p /home/kubernetes/bin\n ExecStartPre=/bin/mount --bind /home/kubernetes/bin /home/kubernetes/bin\n ExecStartPre=/bin/mount -o remount,exec /home/kubernetes/bin\n ExecStartPre=/usr/bin/curl --fail --retry 5 --retry-delay 3 --silent --show-error\t-H \"X-Google-Metadata-Request: True\" -o /home/kubernetes/bin/configure.sh http://metadata.google.internal/computeMetadata/v1/instance/attributes/configure-sh\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/configure.sh\n ExecStart=/home/kubernetes/bin/configure.sh\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-node-configuration.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Configure kubernetes node\n After=kube-node-installation.service\n\n [Service]\n Type=oneshot\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/configure-helper.sh\n ExecStart=/home/kubernetes/bin/configure-helper.sh\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-docker-monitor.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes health monitoring for docker\n After=kube-node-configuration.service\n\n [Service]\n Restart=always\n RestartSec=10\n RemainAfterExit=yes\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh\n ExecStart=/home/kubernetes/bin/health-monitor.sh docker\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kubelet-monitor.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes health monitoring for kubelet\n After=kube-node-configuration.service\n\n [Service]\n Restart=always\n RestartSec=10\n RemainAfterExit=yes\n RemainAfterExit=yes\n ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh\n ExecStart=/home/kubernetes/bin/health-monitor.sh kubelet\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-logrotate.timer\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Hourly kube-logrotate invocation\n\n [Timer]\n OnCalendar=hourly\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kube-logrotate.service\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes log rotation\n After=kube-node-configuration.service\n\n [Service]\n Type=oneshot\n ExecStart=-/usr/sbin/logrotate /etc/logrotate.conf\n\n [Install]\n WantedBy=kubernetes.target\n\n - path: /etc/systemd/system/kubernetes.target\n permissions: 0644\n owner: root\n content: |\n [Unit]\n Description=Kubernetes\n\n [Install]\n WantedBy=multi-user.target\n\nruncmd:\n - systemctl daemon-reload\n - systemctl enable kube-node-installation.service\n - systemctl enable kube-node-configuration.service\n - systemctl enable kube-docker-monitor.service\n - systemctl enable kubelet-monitor.service\n - systemctl enable kube-logrotate.timer\n - systemctl enable kube-logrotate.service\n - systemctl enable kubernetes.target\n - systemctl start kubernetes.target\n" + }, + { + "key": "gci-update-strategy", + "value": "update_disabled" + }, + { + "key": "gci-ensure-gke-docker", + "value": "true" + }, + { + "key": "configure-sh", + "value": "#!/bin/bash\n\n# Copyright 2016 The Kubernetes Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n# Due to the GCE custom metadata size limit, we split the entire script into two\n# files configure.sh and configure-helper.sh. The functionality of downloading\n# kubernetes configuration, manifests, docker images, and binary files are\n# put in configure.sh, which is uploaded via GCE custom metadata.\n\nset -o errexit\nset -o nounset\nset -o pipefail\n\nfunction set-broken-motd {\n cat \u003e /etc/motd \u003c\u003cEOF\nBroken (or in progress) Kubernetes node setup! Check the cluster initialization status\nusing the following commands.\n\nMaster instance:\n - sudo systemctl status kube-master-installation\n - sudo systemctl status kube-master-configuration\n\nNode instance:\n - sudo systemctl status kube-node-installation\n - sudo systemctl status kube-node-configuration\nEOF\n}\n\nfunction download-kube-env {\n # Fetch kube-env from GCE metadata server.\n local -r tmp_kube_env=\"/tmp/kube-env.yaml\"\n curl --fail --retry 5 --retry-delay 3 --silent --show-error \\\n -H \"X-Google-Metadata-Request: True\" \\\n -o \"${tmp_kube_env}\" \\\n http://metadata.google.internal/computeMetadata/v1/instance/attributes/kube-env\n # Convert the yaml format file into a shell-style file.\n eval $(python -c '''\nimport pipes,sys,yaml\nfor k,v in yaml.load(sys.stdin).iteritems():\n print(\"readonly {var}={value}\".format(var = k, value = pipes.quote(str(v))))\n''' \u003c \"${tmp_kube_env}\" \u003e \"${KUBE_HOME}/kube-env\")\n rm -f \"${tmp_kube_env}\"\n}\n\nfunction download-kube-master-certs {\n # Fetch kube-env from GCE metadata server.\n local -r tmp_kube_master_certs=\"/tmp/kube-master-certs.yaml\"\n curl --fail --retry 5 --retry-delay 3 --silent --show-error \\\n -H \"X-Google-Metadata-Request: True\" \\\n -o \"${tmp_kube_master_certs}\" \\\n http://metadata.google.internal/computeMetadata/v1/instance/attributes/kube-master-certs\n # Convert the yaml format file into a shell-style file.\n eval $(python -c '''\nimport pipes,sys,yaml\nfor k,v in yaml.load(sys.stdin).iteritems():\n print(\"readonly {var}={value}\".format(var = k, value = pipes.quote(str(v))))\n''' \u003c \"${tmp_kube_master_certs}\" \u003e \"${KUBE_HOME}/kube-master-certs\")\n rm -f \"${tmp_kube_master_certs}\"\n}\n\nfunction validate-hash {\n local -r file=\"$1\"\n local -r expected=\"$2\"\n\n actual=$(sha1sum ${file} | awk '{ print $1 }') || true\n if [[ \"${actual}\" != \"${expected}\" ]]; then\n echo \"== ${file} corrupted, sha1 ${actual} doesn't match expected ${expected} ==\"\n return 1\n fi\n}\n\n# Retry a download until we get it. Takes a hash and a set of URLs.\n#\n# $1 is the sha1 of the URL. Can be \"\" if the sha1 is unknown.\n# $2+ are the URLs to download.\nfunction download-or-bust {\n local -r hash=\"$1\"\n shift 1\n\n local -r urls=( $* )\n while true; do\n for url in \"${urls[@]}\"; do\n local file=\"${url##*/}\"\n rm -f \"${file}\"\n if ! curl -f --ipv4 -Lo \"${file}\" --connect-timeout 20 --max-time 300 --retry 6 --retry-delay 10 \"${url}\"; then\n echo \"== Failed to download ${url}. Retrying. ==\"\n elif [[ -n \"${hash}\" ]] && ! validate-hash \"${file}\" \"${hash}\"; then\n echo \"== Hash validation of ${url} failed. Retrying. ==\"\n else\n if [[ -n \"${hash}\" ]]; then\n echo \"== Downloaded ${url} (SHA1 = ${hash}) ==\"\n else\n echo \"== Downloaded ${url} ==\"\n fi\n return\n fi\n done\n done\n}\n\nfunction split-commas {\n echo $1 | tr \",\" \"\\n\"\n}\n\nfunction install-gci-mounter-tools {\n CONTAINERIZED_MOUNTER_HOME=\"${KUBE_HOME}/containerized_mounter\"\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}\"\n chmod a+x \"${CONTAINERIZED_MOUNTER_HOME}\"\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}/rootfs\"\n local -r mounter_tar_sha=\"8003b798cf33c7f91320cd6ee5cec4fa22244571\"\n download-or-bust \"${mounter_tar_sha}\" \"https://storage.googleapis.com/kubernetes-release/gci-mounter/mounter.tar\"\n cp \"${dst_dir}/kubernetes/gci-trusty/gci-mounter\" \"${CONTAINERIZED_MOUNTER_HOME}/mounter\"\n chmod a+x \"${CONTAINERIZED_MOUNTER_HOME}/mounter\"\n mv \"${KUBE_HOME}/mounter.tar\" /tmp/mounter.tar\n tar xvf /tmp/mounter.tar -C \"${CONTAINERIZED_MOUNTER_HOME}/rootfs\"\n rm /tmp/mounter.tar\n mkdir -p \"${CONTAINERIZED_MOUNTER_HOME}/rootfs/var/lib/kubelet\"\n}\n\n# Install node problem detector binary.\nfunction install-node-problem-detector {\n if [[ -n \"${NODE_PROBLEM_DETECTOR_VERSION:-}\" ]]; then\n local -r npd_version=\"${NODE_PROBLEM_DETECTOR_VERSION}\"\n local -r npd_sha1=\"${NODE_PROBLEM_DETECTOR_TAR_HASH}\"\n else\n local -r npd_version=\"v0.4.1\"\n local -r npd_sha1=\"a57a3fe64cab8a18ec654f5cef0aec59dae62568\"\n fi\n local -r npd_release_path=\"https://storage.googleapis.com/kubernetes-release\"\n local -r npd_tar=\"node-problem-detector-${npd_version}.tar.gz\"\n download-or-bust \"${npd_sha1}\" \"${npd_release_path}/node-problem-detector/${npd_tar}\"\n local -r npd_dir=\"${KUBE_HOME}/node-problem-detector\"\n mkdir -p \"${npd_dir}\"\n tar xzf \"${KUBE_HOME}/${npd_tar}\" -C \"${npd_dir}\" --overwrite\n mv \"${npd_dir}/bin\"/* \"${KUBE_HOME}/bin\"\n chmod a+x \"${KUBE_HOME}/bin/node-problem-detector\"\n rmdir \"${npd_dir}/bin\"\n rm -f \"${KUBE_HOME}/${npd_tar}\"\n}\n\n# Downloads kubernetes binaries and kube-system manifest tarball, unpacks them,\n# and places them into suitable directories. Files are placed in /home/kubernetes.\nfunction install-kube-binary-config {\n cd \"${KUBE_HOME}\"\n local -r server_binary_tar_urls=( $(split-commas \"${SERVER_BINARY_TAR_URL}\") )\n local -r server_binary_tar=\"${server_binary_tar_urls[0]##*/}\"\n if [[ -n \"${SERVER_BINARY_TAR_HASH:-}\" ]]; then\n local -r server_binary_tar_hash=\"${SERVER_BINARY_TAR_HASH}\"\n else\n echo \"Downloading binary release sha1 (not found in env)\"\n download-or-bust \"\" \"${server_binary_tar_urls[@]/.tar.gz/.tar.gz.sha1}\"\n local -r server_binary_tar_hash=$(cat \"${server_binary_tar}.sha1\")\n fi\n echo \"Downloading binary release tar\"\n download-or-bust \"${server_binary_tar_hash}\" \"${server_binary_tar_urls[@]}\"\n tar xzf \"${KUBE_HOME}/${server_binary_tar}\" -C \"${KUBE_HOME}\" --overwrite\n # Copy docker_tag and image files to ${KUBE_HOME}/kube-docker-files.\n src_dir=\"${KUBE_HOME}/kubernetes/server/bin\"\n dst_dir=\"${KUBE_HOME}/kube-docker-files\"\n mkdir -p \"${dst_dir}\"\n cp \"${src_dir}/\"*.docker_tag \"${dst_dir}\"\n if [[ \"${KUBERNETES_MASTER:-}\" == \"false\" ]]; then\n cp \"${src_dir}/kube-proxy.tar\" \"${dst_dir}\"\n if [[ \"${ENABLE_NODE_PROBLEM_DETECTOR:-}\" == \"standalone\" ]]; then\n install-node-problem-detector\n fi\n else\n cp \"${src_dir}/kube-apiserver.tar\" \"${dst_dir}\"\n cp \"${src_dir}/kube-controller-manager.tar\" \"${dst_dir}\"\n cp \"${src_dir}/kube-scheduler.tar\" \"${dst_dir}\"\n cp -r \"${KUBE_HOME}/kubernetes/addons\" \"${dst_dir}\"\n fi\n local -r kube_bin=\"${KUBE_HOME}/bin\"\n mv \"${src_dir}/kubelet\" \"${kube_bin}\"\n mv \"${src_dir}/kubectl\" \"${kube_bin}\"\n\n if [[ \"${NETWORK_PROVIDER:-}\" == \"kubenet\" ]] || \\\n [[ \"${NETWORK_PROVIDER:-}\" == \"cni\" ]]; then\n #TODO(andyzheng0831): We should make the cni version number as a k8s env variable.\n local -r cni_tar=\"cni-0799f5732f2a11b329d9e3d51b9c8f2e3759f2ff.tar.gz\"\n local -r cni_sha1=\"1d9788b0f5420e1a219aad2cb8681823fc515e7c\"\n download-or-bust \"${cni_sha1}\" \"https://storage.googleapis.com/kubernetes-release/network-plugins/${cni_tar}\"\n local -r cni_dir=\"${KUBE_HOME}/cni\"\n mkdir -p \"${cni_dir}\"\n tar xzf \"${KUBE_HOME}/${cni_tar}\" -C \"${cni_dir}\" --overwrite\n mv \"${cni_dir}/bin\"/* \"${kube_bin}\"\n rmdir \"${cni_dir}/bin\"\n rm -f \"${KUBE_HOME}/${cni_tar}\"\n fi\n\n mv \"${KUBE_HOME}/kubernetes/LICENSES\" \"${KUBE_HOME}\"\n mv \"${KUBE_HOME}/kubernetes/kubernetes-src.tar.gz\" \"${KUBE_HOME}\"\n\n # Put kube-system pods manifests in ${KUBE_HOME}/kube-manifests/.\n dst_dir=\"${KUBE_HOME}/kube-manifests\"\n mkdir -p \"${dst_dir}\"\n local -r manifests_tar_urls=( $(split-commas \"${KUBE_MANIFESTS_TAR_URL}\") )\n local -r manifests_tar=\"${manifests_tar_urls[0]##*/}\"\n if [ -n \"${KUBE_MANIFESTS_TAR_HASH:-}\" ]; then\n local -r manifests_tar_hash=\"${KUBE_MANIFESTS_TAR_HASH}\"\n else\n echo \"Downloading k8s manifests sha1 (not found in env)\"\n download-or-bust \"\" \"${manifests_tar_urls[@]/.tar.gz/.tar.gz.sha1}\"\n local -r manifests_tar_hash=$(cat \"${manifests_tar}.sha1\")\n fi\n echo \"Downloading k8s manifests tar\"\n download-or-bust \"${manifests_tar_hash}\" \"${manifests_tar_urls[@]}\"\n tar xzf \"${KUBE_HOME}/${manifests_tar}\" -C \"${dst_dir}\" --overwrite\n local -r kube_addon_registry=\"${KUBE_ADDON_REGISTRY:-gcr.io/google_containers}\"\n if [[ \"${kube_addon_registry}\" != \"gcr.io/google_containers\" ]]; then\n find \"${dst_dir}\" -name \\*.yaml -or -name \\*.yaml.in | \\\n xargs sed -ri \"s@(image:\\s.*)gcr.io/google_containers@\\1${kube_addon_registry}@\"\n find \"${dst_dir}\" -name \\*.manifest -or -name \\*.json | \\\n xargs sed -ri \"s@(image\\\":\\s+\\\")gcr.io/google_containers@\\1${kube_addon_registry}@\"\n fi\n cp \"${dst_dir}/kubernetes/gci-trusty/gci-configure-helper.sh\" \"${KUBE_HOME}/bin/configure-helper.sh\"\n cp \"${dst_dir}/kubernetes/gci-trusty/health-monitor.sh\" \"${KUBE_HOME}/bin/health-monitor.sh\"\n chmod -R 755 \"${kube_bin}\"\n\n # Install gci mounter related artifacts to allow mounting storage volumes in GCI\n install-gci-mounter-tools\n \n # Clean up.\n rm -rf \"${KUBE_HOME}/kubernetes\"\n rm -f \"${KUBE_HOME}/${server_binary_tar}\"\n rm -f \"${KUBE_HOME}/${server_binary_tar}.sha1\"\n rm -f \"${KUBE_HOME}/${manifests_tar}\"\n rm -f \"${KUBE_HOME}/${manifests_tar}.sha1\"\n}\n\n######### Main Function ##########\necho \"Start to install kubernetes files\"\nset-broken-motd\nKUBE_HOME=\"/home/kubernetes\"\ndownload-kube-env\nsource \"${KUBE_HOME}/kube-env\"\nif [[ \"${KUBERNETES_MASTER:-}\" == \"true\" ]]; then\n download-kube-master-certs\nfi\ninstall-kube-binary-config\necho \"Done for installing kubernetes files\"\n\n" + }, + { + "key": "cluster-name", + "value": "tachoi-cluster" + }, + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/gke-tachoi-cluster-default-pool-8f292535" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/australia-southeast1-a/instanceGroupManagers/gke-tachoi-cluster-default-pool-8f292535-grp" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/compute", + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/australia-southeast1-a/instances/gke-tachoi-cluster-default-pool-8f292535-f1gn", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Broadwell", + "labels": { + "goog-gke-node": "" + }, + "labelFingerprint": "2ixRno2sGuM=", + "startRestricted": false, + "deletionProtection": false + } + ] + }, + "zones/australia-southeast1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/australia-southeast1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/australia-southeast1-b" + } + ] + } + }, + "zones/europe-west2-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west2-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west2-a" + } + ] + } + }, + "zones/europe-west2-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west2-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west2-b" + } + ] + } + }, + "zones/europe-west2-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west2-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west2-c" + } + ] + } + }, + "zones/europe-west3-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west3-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west3-c" + } + ] + } + }, + "zones/europe-west3-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west3-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west3-a" + } + ] + } + }, + "zones/europe-west3-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west3-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west3-b" + } + ] + } + }, + "zones/southamerica-east1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/southamerica-east1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/southamerica-east1-a" + } + ] + } + }, + "zones/southamerica-east1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/southamerica-east1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/southamerica-east1-b" + } + ] + } + }, + "zones/southamerica-east1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/southamerica-east1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/southamerica-east1-c" + } + ] + } + }, + "zones/asia-south1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-south1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-south1-b" + } + ] + } + }, + "zones/asia-south1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-south1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-south1-a" + } + ] + } + }, + "zones/asia-south1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/asia-south1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/asia-south1-c" + } + ] + } + }, + "zones/northamerica-northeast1-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/northamerica-northeast1-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/northamerica-northeast1-a" + } + ] + } + }, + "zones/northamerica-northeast1-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/northamerica-northeast1-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/northamerica-northeast1-b" + } + ] + } + }, + "zones/northamerica-northeast1-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/northamerica-northeast1-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/northamerica-northeast1-c" + } + ] + } + }, + "zones/europe-west4-c": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west4-c' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west4-c" + } + ] + } + }, + "zones/europe-west4-b": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west4-b' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west4-b" + } + ] + } + }, + "zones/europe-west4-a": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'zones/europe-west4-a' on this page.", + "data": [ + { + "key": "scope", + "value": "zones/europe-west4-a" + } + ] + } + } + }, + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/instances" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:05 GMT + recorded_at: Fri, 11 May 2018 14:33:50 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/asia-east1/targetPools + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/addresses body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:50 GMT + Authorization: + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:05 GMT + - Fri, 11 May 2018 14:33:51 GMT Date: - - Fri, 02 Jun 2017 19:26:05 GMT + - Fri, 11 May 2018 14:33:51 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/IuPal361mAkPuZ3jiwchnkc0O28"' + - '"-kwRLjRtJwY47Ht81mAhvSxphlA=/vrTeVn_gRgU8wMzHkKnkDXgPjuI="' Vary: - Origin - X-Origin @@ -8033,52 +65035,251 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAJ2OQQ6CMBAA730FqVdh0+CJN3DwCwXXulK7TXeBg/HvIjHx - 7n0yM09T2YnSxXaVHfmRZ8WD+hJQz8yxJ1F73BDagVz4jqMKjLRQrHUesHau - bd0JCgbiJOCFfI1e1MFPI7tDMF57StPHdFPN0gGs69oE5hDRZ5JmO4DvBSwO - /u+Zl3kDqIboatoAAAA= + encoding: UTF-8 + string: | + { + "kind": "compute#addressAggregatedList", + "id": "projects/GOOGLE_PROJECT/aggregated/addresses", + "items": { + "global": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'global' on this page.", + "data": [ + { + "key": "scope", + "value": "global" + } + ] + } + }, + "regions/us-central1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-central1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-central1" + } + ] + } + }, + "regions/europe-west1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west1" + } + ] + } + }, + "regions/us-west1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-west1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-west1" + } + ] + } + }, + "regions/asia-east1": { + "addresses": [ + { + "kind": "compute#address", + "id": "3443770591989514140", + "creationTimestamp": "2017-10-04T08:42:43.648-07:00", + "name": "test-new-lb-ip", + "description": "", + "address": "35.194.238.83", + "status": "RESERVED", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/addresses/test-new-lb-ip" + } + ] + }, + "regions/us-east1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-east1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-east1" + } + ] + } + }, + "regions/asia-northeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-northeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-northeast1" + } + ] + } + }, + "regions/asia-southeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-southeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-southeast1" + } + ] + } + }, + "regions/us-east4": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-east4' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-east4" + } + ] + } + }, + "regions/australia-southeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/australia-southeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/australia-southeast1" + } + ] + } + }, + "regions/europe-west2": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west2' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west2" + } + ] + } + }, + "regions/europe-west3": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west3' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west3" + } + ] + } + }, + "regions/southamerica-east1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/southamerica-east1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/southamerica-east1" + } + ] + } + }, + "regions/asia-south1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-south1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-south1" + } + ] + } + }, + "regions/northamerica-northeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/northamerica-northeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/northamerica-northeast1" + } + ] + } + }, + "regions/europe-west4": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west4' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west4" + } + ] + } + } + }, + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/addresses" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:05 GMT + recorded_at: Fri, 11 May 2018 14:33:51 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/asia-northeast1/targetPools + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/forwardingRules body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:51 GMT + Authorization: + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:05 GMT + - Fri, 11 May 2018 14:33:51 GMT Date: - - Fri, 02 Jun 2017 19:26:05 GMT + - Fri, 11 May 2018 14:33:51 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/JOXOD8abbOKO7LAt5YZo8kZjvvU"' + - '"hiSh9ZtCXI6D5A5BTbrgO3fAc98=/Q0E4NOxnr-o_zdISjWvPBQ0u4mw="' Vary: - Origin - X-Origin @@ -8095,52 +65296,287 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOQQ6CMBAA77yC1KuwafDEGzj4hVrXslK7TXeBg/HvIjHx - Ad4nM/OsajNRupq+Np4feVY8qCsB9cwcBxI1xw2hHciF7+hVwNNCsdH5go21 - XWdPUDAQJwEn5JrERUd0ohZ+LtlFgvE2UJo+ulE1Sw+wrmsbmENEl0nabQO+ - K7BY+DNavao3RVGX3eQAAAA= + encoding: UTF-8 + string: | + { + "kind": "compute#forwardingRuleAggregatedList", + "id": "projects/GOOGLE_PROJECT/aggregated/forwardingRules", + "items": { + "global": { + "forwardingRules": [ + { + "kind": "compute#forwardingRule", + "id": "3767149258212423721", + "creationTimestamp": "2017-05-05T16:12:06.144-07:00", + "name": "cfme-auto-fe", + "description": "", + "IPAddress": "35.190.21.69", + "IPProtocol": "TCP", + "portRange": "80-80", + "target": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/targetHttpProxies/cfme-auto-lb-target-proxy", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/forwardingRules/cfme-auto-fe", + "loadBalancingScheme": "EXTERNAL", + "ipVersion": "IPV4" + }, + { + "kind": "compute#forwardingRule", + "id": "3608461533849174550", + "creationTimestamp": "2016-10-26T02:52:57.768-07:00", + "name": "http-balancer-forwarding-rule", + "description": "", + "IPAddress": "130.211.32.95", + "IPProtocol": "TCP", + "portRange": "80-80", + "target": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/targetHttpProxies/http-balancer-target-proxy", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/forwardingRules/http-balancer-forwarding-rule", + "loadBalancingScheme": "EXTERNAL" + } + ] + }, + "regions/us-central1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-central1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-central1" + } + ] + } + }, + "regions/europe-west1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west1" + } + ] + } + }, + "regions/us-west1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-west1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-west1" + } + ] + } + }, + "regions/asia-east1": { + "forwardingRules": [ + { + "kind": "compute#forwardingRule", + "id": "3192052763601282961", + "creationTimestamp": "2017-01-06T05:19:58.369-08:00", + "name": "test-first-load-balancer-forwarding-rule", + "description": "", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1", + "IPAddress": "104.199.167.96", + "IPProtocol": "TCP", + "portRange": "80-80", + "target": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/targetPools/test-first-load-balancer", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/forwardingRules/test-first-load-balancer-forwarding-rule", + "loadBalancingScheme": "EXTERNAL" + }, + { + "kind": "compute#forwardingRule", + "id": "4302599738613704530", + "creationTimestamp": "2017-01-06T05:21:01.200-08:00", + "name": "test-second-load-balancer-forwarding-rule", + "description": "", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1", + "IPAddress": "104.199.129.143", + "IPProtocol": "UDP", + "portRange": "8080-8080", + "target": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/targetPools/test-second-load-balancer", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/forwardingRules/test-second-load-balancer-forwarding-rule", + "loadBalancingScheme": "EXTERNAL" + } + ] + }, + "regions/us-east1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-east1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-east1" + } + ] + } + }, + "regions/asia-northeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-northeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-northeast1" + } + ] + } + }, + "regions/asia-southeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-southeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-southeast1" + } + ] + } + }, + "regions/us-east4": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-east4' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-east4" + } + ] + } + }, + "regions/australia-southeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/australia-southeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/australia-southeast1" + } + ] + } + }, + "regions/europe-west2": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west2' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west2" + } + ] + } + }, + "regions/europe-west3": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west3' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west3" + } + ] + } + }, + "regions/southamerica-east1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/southamerica-east1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/southamerica-east1" + } + ] + } + }, + "regions/asia-south1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-south1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-south1" + } + ] + } + }, + "regions/northamerica-northeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/northamerica-northeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/northamerica-northeast1" + } + ] + } + }, + "regions/europe-west4": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west4' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west4" + } + ] + } + } + }, + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/forwardingRules" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:05 GMT + recorded_at: Fri, 11 May 2018 14:33:51 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/asia-southeast1/targetPools + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/targetPools body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:51 GMT + Authorization: + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:05 GMT + - Fri, 11 May 2018 14:33:51 GMT Date: - - Fri, 02 Jun 2017 19:26:05 GMT + - Fri, 11 May 2018 14:33:51 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/jAb5Wl8n-tGslW9ZHN_BU_d6Fbk"' + - '"h4u1u8BtwRuC1FaEPcl-JHaCxqI=/sg5wgzBzwX3E8IqY5UcPPyrX9ws="' Vary: - Origin - X-Origin @@ -8157,52 +65593,263 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOQQ6CMBAA730FqVdh0+CJN3DwC7WuZaWyDbuFg/HvIjHx - Ad4nM/M0lR1putqusoEfuSge1M8R9cycehK1xw2hHcgz3zGoQKCFUq3lgrVz - betOMGMkngS8kK+Fiw7oRR38XLKLBNOtp2n86AbVLB3Auq5NZI4JfSZptg34 - rsDi4M+oeZk3xm8G0OQAAAA= + encoding: UTF-8 + string: | + { + "kind": "compute#targetPoolAggregatedList", + "id": "projects/GOOGLE_PROJECT/aggregated/targetPools", + "items": { + "regions/us-central1": { + "targetPools": [ + { + "kind": "compute#targetPool", + "id": "4170855026968816021", + "creationTimestamp": "2018-02-21T03:26:50.223-08:00", + "name": "test--target-pool", + "description": "", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1", + "instances": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/instance-group-1-gvej" + ], + "sessionAffinity": "NONE", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/targetPools/test--target-pool" + } + ] + }, + "regions/europe-west1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west1" + } + ] + } + }, + "regions/us-west1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-west1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-west1" + } + ] + } + }, + "regions/asia-east1": { + "targetPools": [ + { + "kind": "compute#targetPool", + "id": "9047195615959852949", + "creationTimestamp": "2017-01-06T05:19:54.735-08:00", + "name": "test-first-load-balancer", + "description": "", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1", + "healthChecks": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/httpHealthChecks/test-lb-health-check" + ], + "instances": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-1" + ], + "sessionAffinity": "NONE", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/targetPools/test-first-load-balancer" + }, + { + "kind": "compute#targetPool", + "id": "1188496733865387865", + "creationTimestamp": "2017-01-06T05:20:54.864-08:00", + "name": "test-second-load-balancer", + "description": "", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1", + "instances": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-2", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-1" + ], + "sessionAffinity": "NONE", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/targetPools/test-second-load-balancer" + } + ] + }, + "regions/us-east1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-east1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-east1" + } + ] + } + }, + "regions/asia-northeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-northeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-northeast1" + } + ] + } + }, + "regions/asia-southeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-southeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-southeast1" + } + ] + } + }, + "regions/us-east4": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-east4' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-east4" + } + ] + } + }, + "regions/australia-southeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/australia-southeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/australia-southeast1" + } + ] + } + }, + "regions/europe-west2": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west2' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west2" + } + ] + } + }, + "regions/europe-west3": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west3' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west3" + } + ] + } + }, + "regions/southamerica-east1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/southamerica-east1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/southamerica-east1" + } + ] + } + }, + "regions/asia-south1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-south1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-south1" + } + ] + } + }, + "regions/northamerica-northeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/northamerica-northeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/northamerica-northeast1" + } + ] + } + }, + "regions/europe-west4": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west4' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west4" + } + ] + } + } + }, + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/targetPools" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:05 GMT + recorded_at: Fri, 11 May 2018 14:33:51 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/europe-west1/targetPools + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/instance-group-1-gvej body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:51 GMT + Authorization: + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:05 GMT + - Fri, 11 May 2018 14:33:51 GMT Date: - - Fri, 02 Jun 2017 19:26:05 GMT + - Fri, 11 May 2018 14:33:51 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/pTQVXiCv9SLidxSDtQytWuJzpO8"' + - '"kCgRWkhqX_-hy6SskqDjeHzP6wY=/0wRj2NUMHeebhK8sdECSdFO5FT4="' Vary: - Origin - X-Origin @@ -8219,52 +65866,137 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAKWOQQ6CMBAA730FqVfLpsETb+DgFwDXulLZprvQg/HvIjHx - Ad4nM/M0lZ1ovti2siM/0qJ40D4H1DNz7EjUHjeEdiBlvuOoAiOtFJ0uAzrv - m8afIGMgngVwyZzQFRT18BPJbhGM147m6eO6qSZpAUopdWAOEftEUm8P8P2A - 1cM/RfMybyWgpZ7eAAAA + encoding: UTF-8 + string: | + { + "kind": "compute#instance", + "id": "9028819323520596299", + "creationTimestamp": "2017-05-05T16:15:49.368-07:00", + "name": "instance-group-1-gvej", + "tags": { + "items": [ + "http-server", + "https-server" + ], + "fingerprint": "6smc4R4d39I=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/machineTypes/n1-standard-1", + "status": "RUNNING", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/subnetworks/default-175e7dd38602e139", + "networkIP": "10.128.0.3", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT", + "natIP": "35.184.135.147" + } + ], + "fingerprint": "FNADd--WMGI=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/disks/instance-group-1-gvej", + "deviceName": "instance-template-1", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "MaK5DI9wgnw=", + "items": [ + { + "key": "instance-template", + "value": "projects/135776510666/global/instanceTemplates/instance-template-1" + }, + { + "key": "created-by", + "value": "projects/135776510666/zones/us-central1-a/instanceGroupManagers/instance-group-1" + } + ] + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/instance-group-1-gvej", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Intel Sandy Bridge", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:05 GMT + recorded_at: Fri, 11 May 2018 14:33:52 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-central1/targetPools + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-1 body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:52 GMT + Authorization: + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:06 GMT + - Fri, 11 May 2018 14:33:52 GMT Date: - - Fri, 02 Jun 2017 19:26:06 GMT + - Fri, 11 May 2018 14:33:52 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/_JcyyEIp_0eh9cx704ttvBeGa5U"' + - '"AWV4c5esSXeW4AQoaUmDsIHnbhA=/IFiW1IE2MtHiRTaOe5X_HKJDIZs="' Vary: - Origin - X-Origin @@ -8281,56 +66013,115 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAL2SPU/DMBCG9/yKKKy4jpM0DdkQQmKoCkM3xOC4l8TUsaPY - aQVV/zt260JZkJAKg5f7eJ+797wLwmjN5Soqw4iprh8NXBk6NGCelBJzrk10 - bUv4oaAf1CswozHjGy6QGStAhKQpyfAADVdS41EjBtIMVBD8paOPIgY6bXWe - gzDc2fcT2TWEJ+4szUg6m8Z5kWckIdm0mPo8G4AaC17yDrShXe/Kk5jkKL5B - Sb4kaRmTMsknRRGjeFbGsW+UtANXWyuFROWDK9Bs4L0TdDkfPa7mAq0xvS4x - 3m63k0apRgDtuZ7Y6bHfAG8I/p1LHtICFaa9a4GtTxaFFwA2QlVUYKfzcEbA - bu0jkrlA5HAv3nJpjZQMLjnGu5LwbWtU4U8O1mMlwSBjL3g+iAatrVu3dc0l - N2/uAIvHxX10yop6zuX6r+5y/nux/yUWvA8O4/0rPgr2wQcFdxoVqAMAAA== + encoding: UTF-8 + string: | + { + "kind": "compute#instance", + "id": "2226781571317376688", + "creationTimestamp": "2017-01-06T05:15:11.409-08:00", + "name": "load-balancer-1", + "description": "", + "tags": { + "fingerprint": "42WmSpB8rSM=" + }, + "machineType": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/machineTypes/n1-standard-1", + "status": "TERMINATED", + "zone": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a", + "canIpForward": false, + "networkInterfaces": [ + { + "kind": "compute#networkInterface", + "network": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/networks/default", + "subnetwork": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/subnetworks/default-0d01dc41a9f25811", + "networkIP": "10.140.0.5", + "name": "nic0", + "accessConfigs": [ + { + "kind": "compute#accessConfig", + "type": "ONE_TO_ONE_NAT", + "name": "External NAT" + } + ], + "fingerprint": "Txrbd_lIc_E=" + } + ], + "disks": [ + { + "kind": "compute#attachedDisk", + "type": "PERSISTENT", + "mode": "READ_WRITE", + "source": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/disks/load-balancer-1", + "deviceName": "load-balancer-1", + "index": 0, + "boot": true, + "autoDelete": true, + "licenses": [ + "https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-8-jessie" + ], + "interface": "SCSI" + } + ], + "metadata": { + "kind": "compute#metadata", + "fingerprint": "_t6z3Bf7i-o=" + }, + "serviceAccounts": [ + { + "email": "135776510666-compute@developer.gserviceaccount.com", + "scopes": [ + "https://www.googleapis.com/auth/devstorage.read_only", + "https://www.googleapis.com/auth/logging.write", + "https://www.googleapis.com/auth/monitoring.write", + "https://www.googleapis.com/auth/servicecontrol", + "https://www.googleapis.com/auth/service.management.readonly", + "https://www.googleapis.com/auth/trace.append" + ] + } + ], + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-1", + "scheduling": { + "onHostMaintenance": "MIGRATE", + "automaticRestart": true, + "preemptible": false + }, + "cpuPlatform": "Unknown CPU Platform", + "labelFingerprint": "42WmSpB8rSM=", + "startRestricted": false, + "deletionProtection": false + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:06 GMT + recorded_at: Fri, 11 May 2018 14:33:52 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-east1/targetPools + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-2 body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:52 GMT + Authorization: + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY + Content-Type: + - application/x-www-form-urlencoded response: status: - code: 200 - message: OK + code: 404 + message: Not Found headers: - Expires: - - Fri, 02 Jun 2017 19:26:06 GMT - Date: - - Fri, 02 Jun 2017 19:26:06 GMT - Cache-Control: - - private, max-age=0, must-revalidate, no-transform - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/hu7RNu1yOqybIJ15iJm4diRCTp8"' Vary: - Origin - X-Origin @@ -8338,6 +66129,12 @@ http_interactions: - application/json; charset=UTF-8 Content-Encoding: - gzip + Date: + - Fri, 11 May 2018 14:33:52 GMT + Expires: + - Fri, 11 May 2018 14:33:52 GMT + Cache-Control: + - private, max-age=0 X-Content-Type-Options: - nosniff X-Frame-Options: @@ -8347,52 +66144,62 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAJ2OQQ6CMBAA730FqVdh0+CJN3DwCwXXulLZprvQg/HvIjHx - 7n0yM09T2Ynmi+0qO/IjLYoH9TmgnpljT6L2uCG0AynzHUcVGGmlWOsyYO1c - 27oTZAzEs8AiNXpRBz+J7AbBeO1pnj6em2qSDqCU0gTmENEnkmbrw/cBVgf/ - 1szLvAGxC4ab1gAAAA== + encoding: UTF-8 + string: | + { + "error": { + "errors": [ + { + "domain": "global", + "reason": "notFound", + "message": "The resource 'projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-2' was not found" + } + ], + "code": 404, + "message": "The resource 'projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-2' was not found" + } + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:06 GMT + recorded_at: Fri, 11 May 2018 14:33:52 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-east4/targetPools + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/forwardingRules body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:52 GMT + Authorization: + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:06 GMT + - Fri, 11 May 2018 14:33:52 GMT Date: - - Fri, 02 Jun 2017 19:26:06 GMT + - Fri, 11 May 2018 14:33:52 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/015JxvAtHcecs0a_t58r7lIx99g"' + - '"Jb6Zbjh9Yy4WqrZPTR9MMcbXPWk=/6jVEZlZyPlb-VOml0jwOdMqql28="' Vary: - Origin - X-Origin @@ -8409,52 +66216,287 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAJ2OQQ6CMBAA730FqVfLpoETb+DgFxDXulK7DbvQg/HvIjHx - 7n0yM09T2YnSxXaVHfmRF8WDDnNAPTHHnkTtcUNoB/LMdxxVYKSVotPljM77 - pvEtzBiIk8AiDgfRFn4S2Q2C8dpTmj6em2qWDqCUUgfmEHHIJPXWh+8DrB7+ - rZmXeQNmZIHW1gAAAA== + encoding: UTF-8 + string: | + { + "kind": "compute#forwardingRuleAggregatedList", + "id": "projects/GOOGLE_PROJECT/aggregated/forwardingRules", + "items": { + "global": { + "forwardingRules": [ + { + "kind": "compute#forwardingRule", + "id": "3767149258212423721", + "creationTimestamp": "2017-05-05T16:12:06.144-07:00", + "name": "cfme-auto-fe", + "description": "", + "IPAddress": "35.190.21.69", + "IPProtocol": "TCP", + "portRange": "80-80", + "target": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/targetHttpProxies/cfme-auto-lb-target-proxy", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/forwardingRules/cfme-auto-fe", + "loadBalancingScheme": "EXTERNAL", + "ipVersion": "IPV4" + }, + { + "kind": "compute#forwardingRule", + "id": "3608461533849174550", + "creationTimestamp": "2016-10-26T02:52:57.768-07:00", + "name": "http-balancer-forwarding-rule", + "description": "", + "IPAddress": "130.211.32.95", + "IPProtocol": "TCP", + "portRange": "80-80", + "target": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/targetHttpProxies/http-balancer-target-proxy", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/forwardingRules/http-balancer-forwarding-rule", + "loadBalancingScheme": "EXTERNAL" + } + ] + }, + "regions/us-central1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-central1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-central1" + } + ] + } + }, + "regions/europe-west1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west1" + } + ] + } + }, + "regions/us-west1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-west1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-west1" + } + ] + } + }, + "regions/asia-east1": { + "forwardingRules": [ + { + "kind": "compute#forwardingRule", + "id": "3192052763601282961", + "creationTimestamp": "2017-01-06T05:19:58.369-08:00", + "name": "test-first-load-balancer-forwarding-rule", + "description": "", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1", + "IPAddress": "104.199.167.96", + "IPProtocol": "TCP", + "portRange": "80-80", + "target": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/targetPools/test-first-load-balancer", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/forwardingRules/test-first-load-balancer-forwarding-rule", + "loadBalancingScheme": "EXTERNAL" + }, + { + "kind": "compute#forwardingRule", + "id": "4302599738613704530", + "creationTimestamp": "2017-01-06T05:21:01.200-08:00", + "name": "test-second-load-balancer-forwarding-rule", + "description": "", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1", + "IPAddress": "104.199.129.143", + "IPProtocol": "UDP", + "portRange": "8080-8080", + "target": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/targetPools/test-second-load-balancer", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/forwardingRules/test-second-load-balancer-forwarding-rule", + "loadBalancingScheme": "EXTERNAL" + } + ] + }, + "regions/us-east1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-east1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-east1" + } + ] + } + }, + "regions/asia-northeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-northeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-northeast1" + } + ] + } + }, + "regions/asia-southeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-southeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-southeast1" + } + ] + } + }, + "regions/us-east4": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-east4' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-east4" + } + ] + } + }, + "regions/australia-southeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/australia-southeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/australia-southeast1" + } + ] + } + }, + "regions/europe-west2": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west2' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west2" + } + ] + } + }, + "regions/europe-west3": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west3' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west3" + } + ] + } + }, + "regions/southamerica-east1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/southamerica-east1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/southamerica-east1" + } + ] + } + }, + "regions/asia-south1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-south1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-south1" + } + ] + } + }, + "regions/northamerica-northeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/northamerica-northeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/northamerica-northeast1" + } + ] + } + }, + "regions/europe-west4": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west4' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west4" + } + ] + } + } + }, + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/forwardingRules" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:06 GMT + recorded_at: Fri, 11 May 2018 14:33:52 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-west1/targetPools + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/targetPools body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:52 GMT + Authorization: + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:06 GMT + - Fri, 11 May 2018 14:33:53 GMT Date: - - Fri, 02 Jun 2017 19:26:06 GMT + - Fri, 11 May 2018 14:33:53 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/TyBCSLXJnKWfhjWfbuB5MoyquXc"' + - '"6EaaE9Q3EMZlNN_Ec9KDg10HpoM=/GDhN0LAlQZBILlqiOyEsApgL8uM="' Vary: - Origin - X-Origin @@ -8471,52 +66513,263 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAJ2OQQ6CMBAA77yC1Ktl0+CJN3DwC1DXulK7DbvQg/HvIjHx - 7n0yM8+qNhOli+lq4/mRF8WDDnNAPTPHnkTNcUNoB/LMd/Qq4GmlaHUZ0TrX - tu4EMwbiJLCILSjq4CeR3SAYrz2l6eO5qWbpAEopTWAOEYdM0mx9+D7A6uDf - WvWq3qL2jMHWAAAA + encoding: UTF-8 + string: | + { + "kind": "compute#targetPoolAggregatedList", + "id": "projects/GOOGLE_PROJECT/aggregated/targetPools", + "items": { + "regions/us-central1": { + "targetPools": [ + { + "kind": "compute#targetPool", + "id": "4170855026968816021", + "creationTimestamp": "2018-02-21T03:26:50.223-08:00", + "name": "test--target-pool", + "description": "", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1", + "instances": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/us-central1-a/instances/instance-group-1-gvej" + ], + "sessionAffinity": "NONE", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/us-central1/targetPools/test--target-pool" + } + ] + }, + "regions/europe-west1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west1" + } + ] + } + }, + "regions/us-west1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-west1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-west1" + } + ] + } + }, + "regions/asia-east1": { + "targetPools": [ + { + "kind": "compute#targetPool", + "id": "9047195615959852949", + "creationTimestamp": "2017-01-06T05:19:54.735-08:00", + "name": "test-first-load-balancer", + "description": "", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1", + "healthChecks": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/httpHealthChecks/test-lb-health-check" + ], + "instances": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-1" + ], + "sessionAffinity": "NONE", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/targetPools/test-first-load-balancer" + }, + { + "kind": "compute#targetPool", + "id": "1188496733865387865", + "creationTimestamp": "2017-01-06T05:20:54.864-08:00", + "name": "test-second-load-balancer", + "description": "", + "region": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1", + "instances": [ + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-2", + "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-1" + ], + "sessionAffinity": "NONE", + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/targetPools/test-second-load-balancer" + } + ] + }, + "regions/us-east1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-east1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-east1" + } + ] + } + }, + "regions/asia-northeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-northeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-northeast1" + } + ] + } + }, + "regions/asia-southeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-southeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-southeast1" + } + ] + } + }, + "regions/us-east4": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/us-east4' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/us-east4" + } + ] + } + }, + "regions/australia-southeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/australia-southeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/australia-southeast1" + } + ] + } + }, + "regions/europe-west2": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west2' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west2" + } + ] + } + }, + "regions/europe-west3": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west3' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west3" + } + ] + } + }, + "regions/southamerica-east1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/southamerica-east1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/southamerica-east1" + } + ] + } + }, + "regions/asia-south1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/asia-south1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/asia-south1" + } + ] + } + }, + "regions/northamerica-northeast1": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/northamerica-northeast1' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/northamerica-northeast1" + } + ] + } + }, + "regions/europe-west4": { + "warning": { + "code": "NO_RESULTS_ON_PAGE", + "message": "There are no results for scope 'regions/europe-west4' on this page.", + "data": [ + { + "key": "scope", + "value": "regions/europe-west4" + } + ] + } + } + }, + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/aggregated/targetPools" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:06 GMT + recorded_at: Fri, 11 May 2018 14:33:53 GMT - request: method: get - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/global/httpHealthChecks/foo-healthcheck + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/httpHealthChecks/test-lb-health-check body: encoding: UTF-8 string: '' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) - Accept-Encoding: - - gzip - Content-Type: - - '' - Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store Accept: - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:53 GMT + Authorization: + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY + Content-Type: + - application/x-www-form-urlencoded response: status: code: 200 message: OK headers: Expires: - - Fri, 02 Jun 2017 19:26:06 GMT + - Fri, 11 May 2018 14:33:53 GMT Date: - - Fri, 02 Jun 2017 19:26:06 GMT + - Fri, 11 May 2018 14:33:53 GMT Cache-Control: - private, max-age=0, must-revalidate, no-transform Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/ZZGSsjiIiCnDSLoRYSGuNSmwFmc"' + - '"zEZZ7c4mYFzj_yzsZTpG2fqsWII=/yRPW6fg8jUKNqlPB9MedUPcD5TE="' Vary: - Origin - X-Origin @@ -8533,42 +66786,51 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAGVRQW7DIBC85xWRe60D2I0T+9pLK/VQqfkAIZtAjA2Fdayq - 6t/LkiqHVEICZmZ3huV7sSx6Mx6KblkoN/gJ4UEj+heQFvWzBtUXj0ljsmLd - VLxpN+2WVy3tbbXOrAog0bhxZwaIKAdP4oqLphS85M1ONB0tvkrlJd90nOey - UQ5AyqNzpc6G6mZ4gKiC8dSVJBnTLuLtEuBzSmbvEjVhLDXxdCbOu0DCLc/h - qOfriBAu0n6ASkSTCUxp3YRXqM7QNF5zfO10gKidpWfX2fs/XhEewR7fzNhT - Bhpc7Bib53l1cu5kQXoTV2mu7G+27CKYD+4MCiNT5mJsidMeSiHqWjyxk3V7 - adndB0R2P6DFz+IXOdXwYrkBAAA= + encoding: UTF-8 + string: | + { + "kind": "compute#httpHealthCheck", + "id": "5437000699954601152", + "creationTimestamp": "2018-05-11T07:01:19.256-07:00", + "name": "test-lb-health-check", + "description": "", + "host": "", + "requestPath": "/", + "port": 80, + "checkIntervalSec": 5, + "timeoutSec": 5, + "unhealthyThreshold": 2, + "healthyThreshold": 2, + "selfLink": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/global/httpHealthChecks/test-lb-health-check" + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:06 GMT + recorded_at: Fri, 11 May 2018 14:33:53 GMT - request: method: post - uri: https://www.googleapis.com/compute/v1/projects/civil-tube-113314/regions/us-central1/targetPools/foo-lb/getHealth + uri: https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/regions/asia-east1/targetPools/test-first-load-balancer/getHealth body: encoding: UTF-8 - string: '{"instance":"https://www.googleapis.com/compute/v1/projects/civil-tube-113314/zones/us-central1-b/instances/subnet-test"}' + string: '{"instance":"https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-1"}' headers: User-Agent: - |- - ManageIQ/master fog/0.5.3 google-api-ruby-client/0.8.6 Linux/4.9.0-3-amd64 + ManageIQ/master fog/1.3.3 google-api-ruby-client/0.19.8 Linux/4.16.7-1-ARCH (gzip) + Accept: + - "*/*" + Accept-Encoding: + - gzip,deflate + Date: + - Fri, 11 May 2018 14:33:53 GMT Content-Type: - application/json - Accept-Encoding: - - gzip Authorization: - - Bearer ya29.EmBdBNyZxOrRIzIop2IJYe1ftPDVBg5hvExxClJCn5sgyD88e9dtj9c1sY0sUY-jMOLUJh65f_PO7CGmidXl-fINexhkm0ndPKSJGXC9E9Th3i0RHxphefOzkElxiCZGt1w - Cache-Control: - - no-store - Accept: - - "*/*" + - Bearer ya29.c.EmC4BS6EjCxzPc279N5085jcX3lduf6vcFxz3K3uCVVl52vzfjYD-CK5PD20YtqGINZeSNApTVfN3tKKfV14tTxjnoiQjotMDPt5MMfq328NdN1vGWfJIVC8DB9cth3fLiY response: status: code: 200 @@ -8581,9 +66843,7 @@ http_interactions: Expires: - Mon, 01 Jan 1990 00:00:00 GMT Date: - - Fri, 02 Jun 2017 19:26:07 GMT - Etag: - - '"kZQtRNgJ5aE3qTsgqPYe80xaKIc/6zYa8vcXPSU14NhP1yx07i5dwqA"' + - Fri, 11 May 2018 14:33:53 GMT Vary: - Origin - X-Origin @@ -8600,17 +66860,22 @@ http_interactions: Server: - GSE Alt-Svc: - - quic=":443"; ma=2592000; v="38,37,36,35" + - hq=":443"; ma=2592000; quic=51303433; quic=51303432; quic=51303431; quic=51303339; + quic=51303335,quic=":443"; ma=2592000; v="43,42,41,39,35" Transfer-Encoding: - chunked body: - encoding: ASCII-8BIT - string: !binary |- - H4sIAAAAAAAAAEWOQUvEMBCF7/kVIV5NYtgWYW97ECqICOpBxEOaDm00JqEz - 2YLL/nfTpeJhYJj33nzvxLj48nEQey5c+s6F4IrsPAI9pRTuI5KNDjqwgSZx - Xc3TZX0mSwVr6J1xfqrDhc+HYZgB16swN40ybavMbaPadg2uju3bapiIMu61 - XpZFjSmNAWz2qGoFvdXQR6PznD7BEWrnjz5IKj1IY3Y70+ifFAF1Qekg0myD - kb3+A6DG0kcgSYC0wf97X/ivj93d4eGlexNVPTP+wc7sFwL5vyQMAQAA + encoding: UTF-8 + string: | + { + "kind": "compute#targetPoolInstanceHealth", + "healthStatus": [ + { + "instance": "https://www.googleapis.com/compute/v1/projects/GOOGLE_PROJECT/zones/asia-east1-a/instances/load-balancer-1", + "healthState": "UNHEALTHY" + } + ] + } http_version: - recorded_at: Fri, 02 Jun 2017 19:26:07 GMT + recorded_at: Fri, 11 May 2018 14:33:53 GMT recorded_with: VCR 3.0.3