ruby_odata 0.1.0 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +7 -2
  4. data/.simplecov +10 -0
  5. data/.travis.yml +10 -4
  6. data/.yardopts +6 -0
  7. data/CHANGELOG.md +157 -0
  8. data/Guardfile +14 -0
  9. data/LICENSE +20 -22
  10. data/README.md +289 -0
  11. data/Rakefile +19 -9
  12. data/features/basic_auth.feature +3 -2
  13. data/features/batch_request.feature +7 -6
  14. data/features/cassettes/basic_auth_protected_resource.yml +57 -0
  15. data/features/cassettes/batch_request_additions.yml +69 -0
  16. data/features/cassettes/batch_request_deletes.yml +69 -0
  17. data/features/cassettes/batch_request_updates.yml +69 -0
  18. data/features/cassettes/clean_database_for_testing.yml +46 -0
  19. data/features/cassettes/cucumber_tags/basic_auth.yml +297 -0
  20. data/features/cassettes/cucumber_tags/batch_request.yml +1459 -0
  21. data/features/cassettes/cucumber_tags/complex_types.yml +326 -0
  22. data/features/cassettes/cucumber_tags/error_handling.yml +64 -0
  23. data/features/cassettes/cucumber_tags/query_builder.yml +2025 -0
  24. data/features/cassettes/cucumber_tags/service.yml +234 -0
  25. data/features/cassettes/cucumber_tags/service_manage.yml +937 -0
  26. data/features/cassettes/cucumber_tags/service_methods.yml +647 -0
  27. data/features/cassettes/cucumber_tags/ssl.yml +203 -0
  28. data/features/cassettes/cucumber_tags/type_conversion.yml +337 -0
  29. data/features/cassettes/service_manage_additions.yml +65 -0
  30. data/features/cassettes/service_manage_deletions.yml +58 -0
  31. data/features/cassettes/service_manage_deletions_2.yml +58 -0
  32. data/features/cassettes/unsecured_metadata.yml +89 -0
  33. data/features/complex_types.feature +4 -3
  34. data/features/error_handling.feature +13 -0
  35. data/features/query_builder.feature +30 -9
  36. data/features/service.feature +4 -3
  37. data/features/service_manage.feature +6 -5
  38. data/features/service_methods.feature +3 -2
  39. data/features/ssl.feature +8 -8
  40. data/features/step_definitions/service_steps.rb +32 -74
  41. data/features/support/env.rb +6 -3
  42. data/features/support/hooks.rb +3 -2
  43. data/features/support/pickle.rb +29 -18
  44. data/features/support/vcr.rb +24 -0
  45. data/features/type_conversion.feature +16 -17
  46. data/gemfiles/Gemfile.ruby187 +6 -0
  47. data/lib/ruby_odata.rb +20 -18
  48. data/lib/ruby_odata/association.rb +7 -6
  49. data/lib/ruby_odata/class_builder.rb +31 -14
  50. data/lib/ruby_odata/exceptions.rb +11 -0
  51. data/lib/ruby_odata/helpers.rb +17 -0
  52. data/lib/ruby_odata/operation.rb +5 -6
  53. data/lib/ruby_odata/property_metadata.rb +9 -7
  54. data/lib/ruby_odata/query_builder.rb +127 -63
  55. data/lib/ruby_odata/service.rb +265 -147
  56. data/lib/ruby_odata/version.rb +3 -1
  57. data/ruby_odata.gemspec +22 -13
  58. data/spec/fixtures/error_without_message.xml +5 -0
  59. data/spec/fixtures/int64_ids/edmx_boat_service.xml +19 -0
  60. data/spec/fixtures/int64_ids/edmx_car_service.xml +21 -0
  61. data/spec/fixtures/int64_ids/result_boats.xml +26 -0
  62. data/spec/fixtures/int64_ids/result_cars.xml +28 -0
  63. data/spec/fixtures/ms_system_center/edmx_ms_system_center.xml +1645 -0
  64. data/spec/fixtures/ms_system_center/edmx_ms_system_center_v2.xml +2120 -0
  65. data/spec/fixtures/ms_system_center/hardware_profiles.xml +61 -0
  66. data/spec/fixtures/ms_system_center/virtual_machines.xml +175 -0
  67. data/spec/fixtures/ms_system_center/vm_templates.xml +1193 -0
  68. data/spec/fixtures/nested_expands/edmx_northwind.xml +557 -0
  69. data/spec/fixtures/nested_expands/northwind_products_category_expands.xml +774 -0
  70. data/spec/fixtures/sample_service/result_select_categories_expand.xml +268 -0
  71. data/spec/fixtures/sample_service/result_select_categories_no_property.xml +6 -0
  72. data/spec/fixtures/sample_service/result_select_categories_travsing_no_expand.xml +6 -0
  73. data/spec/fixtures/sample_service/result_select_products_name_price.xml +92 -0
  74. data/spec/property_metadata_spec.rb +10 -10
  75. data/spec/query_builder_spec.rb +153 -14
  76. data/spec/revised_service_spec.rb +111 -6
  77. data/spec/service_spec.rb +389 -85
  78. data/spec/spec_helper.rb +3 -0
  79. data/spec/support/sample_service_matcher.rb +15 -0
  80. data/test/RubyODataService/RubyODataService/App_Data/.gitkeep +0 -0
  81. data/test/blueprints.rb +15 -9
  82. data/test/usage_samples/querying.rb +5 -1
  83. data/test/usage_samples/sample_data.rb +1 -3
  84. metadata +276 -76
  85. data/CHANGELOG.rdoc +0 -88
  86. data/README.rdoc +0 -259
@@ -1,3 +1,5 @@
1
+ # The ruby_odata namespace
1
2
  module OData
2
- VERSION = "0.1.0"
3
+ # The current version of ruby_odata
4
+ VERSION = "0.1.6"
3
5
  end
@@ -11,24 +11,33 @@ Gem::Specification.new do |s|
11
11
  s.homepage = %q{http://github.com/visoft/ruby_odata}
12
12
  s.summary = %q{Ruby consumer of OData services.}
13
13
  s.description = %q{An OData Client Library for Ruby. Use this to interact with OData services}
14
+ s.license = "MIT"
14
15
 
15
16
  s.rubyforge_project = "ruby-odata"
16
17
 
17
- s.add_dependency('activesupport', '>= 2.3.5')
18
- s.add_dependency('rest-client', '>= 1.5.1')
19
- s.add_dependency('nokogiri', '>= 1.4.2')
20
- s.add_dependency('backports', "~> 2.3.0")
21
-
22
- s.add_development_dependency('rake', '~> 0.8.7')
23
- s.add_development_dependency('rspec', '~> 2.5.0')
24
- s.add_development_dependency('cucumber', '~> 0.10.2')
25
- s.add_development_dependency('pickle', '~> 0.4.10')
26
- s.add_development_dependency('faker', '~> 0.9.5')
27
- s.add_development_dependency('machinist', '~> 1.0.6')
28
- s.add_development_dependency('webmock', '~> 1.6.2')
18
+ s.required_ruby_version = '>= 1.9.3'
19
+
20
+ s.add_dependency("addressable", ">= 2.3.4")
21
+ s.add_dependency("i18n", "~> 0.6.0")
22
+ s.add_dependency("activesupport", ">= 3.0.0")
23
+ s.add_dependency("rest-client", ">= 1.5.1")
24
+ s.add_dependency("nokogiri", ">= 1.4.2")
25
+
26
+ s.add_development_dependency("rake", "0.9.2")
27
+ s.add_development_dependency("rspec", "~> 2.11.0")
28
+ s.add_development_dependency("cucumber", "~> 1.2.1")
29
+ s.add_development_dependency("pickle", "~> 0.4.11")
30
+ s.add_development_dependency("machinist", "~> 2.0")
31
+ s.add_development_dependency("webmock", "~> 1.11.0")
32
+ s.add_development_dependency("guard", "~> 1.3.0")
33
+ s.add_development_dependency("guard-rspec", "~> 1.2.1")
34
+ s.add_development_dependency("guard-cucumber", "~> 1.2.0")
35
+ s.add_development_dependency("vcr", "~> 2.5.0")
36
+ s.add_development_dependency("simplecov", "~> 0.7.1")
37
+ s.add_development_dependency("coveralls", "~> 0.6.7")
29
38
 
30
39
  s.files = `git ls-files`.split("\n")
31
40
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
32
41
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
33
42
  s.require_paths = ["lib"]
34
- end
43
+ end
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="yes"?>
2
+ <error
3
+ xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
4
+ <code></code>
5
+ </error>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx">
3
+ <edmx:DataServices m:DataServiceVersion="1.0" m:MaxDataServiceVersion="2.0" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
4
+ <Schema Namespace="Model" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
5
+ <EntityType Name="Boat">
6
+ <Key>
7
+ <PropertyRef Name="KeyId" />
8
+ </Key>
9
+ <Property Name="KeyId" Type="Edm.Int64" Nullable="false" p6:StoreGeneratedPattern="Identity" xmlns:p6="http://schemas.microsoft.com/ado/2009/02/edm/annotation" />
10
+ <Property Name="color" Type="Edm.String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
11
+ </EntityType>
12
+ </Schema>
13
+ <Schema Namespace="WebApp" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
14
+ <EntityContainer Name="adoEntities" m:IsDefaultEntityContainer="true" p6:LazyLoadingEnabled="true" xmlns:p6="http://schemas.microsoft.com/ado/2009/02/edm/annotation">
15
+ <EntitySet Name="Boats" EntityType="Model.Boat" />
16
+ </EntityContainer>
17
+ </Schema>
18
+ </edmx:DataServices>
19
+ </edmx:Edmx>
@@ -0,0 +1,21 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx">
3
+ <edmx:DataServices m:DataServiceVersion="1.0" m:MaxDataServiceVersion="2.0" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
4
+ <Schema Namespace="Model" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
5
+ <EntityType Name="Car">
6
+ <Key>
7
+ <PropertyRef Name="id" />
8
+ </Key>
9
+ <Property Name="id" Type="Edm.Int64" Nullable="false" p6:StoreGeneratedPattern="Identity" xmlns:p6="http://schemas.microsoft.com/ado/2009/02/edm/annotation" />
10
+ <Property Name="color" Type="Edm.String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
11
+ <Property Name="num_spots" Type="Edm.Int32" />
12
+ <Property Name="striped" Type="Edm.Byte" />
13
+ </EntityType>
14
+ </Schema>
15
+ <Schema Namespace="WebApp" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
16
+ <EntityContainer Name="adoEntities" m:IsDefaultEntityContainer="true" p6:LazyLoadingEnabled="true" xmlns:p6="http://schemas.microsoft.com/ado/2009/02/edm/annotation">
17
+ <EntitySet Name="Cars" EntityType="Model.Car" />
18
+ </EntityContainer>
19
+ </Schema>
20
+ </edmx:DataServices>
21
+ </edmx:Edmx>
@@ -0,0 +1,26 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <feed xml:base="http://test.com/test.svc/"
3
+ xmlns="http://www.w3.org/2005/Atom"
4
+ xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices"
5
+ xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
6
+ <id>http://test.com/test.svc/Boats</id>
7
+ <title type="text">Boats</title>
8
+ <updated>2013-10-28T19:59:15Z</updated>
9
+ <link rel="self" title="Boats" href="Boats" />
10
+ <entry>
11
+ <id>http://test.com/test.svc/Boats(213L)</id>
12
+ <category term="Model.Boat" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
13
+ <link rel="edit" title="Boat" href="Boats(213L)" />
14
+ <title />
15
+ <updated>2013-10-28T19:59:15Z</updated>
16
+ <author>
17
+ <name />
18
+ </author>
19
+ <content type="application/xml">
20
+ <m:properties>
21
+ <d:KeyId m:type="Edm.Int64">213</d:KeyId>
22
+ <d:color>blue</d:color>
23
+ </m:properties>
24
+ </content>
25
+ </entry>
26
+ </feed>
@@ -0,0 +1,28 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <feed xml:base="http://test.com/test.svc/"
3
+ xmlns="http://www.w3.org/2005/Atom"
4
+ xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices"
5
+ xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
6
+ <id>http://test.com/test.svc/Cars</id>
7
+ <title type="text">Cars</title>
8
+ <updated>2013-10-28T19:59:15Z</updated>
9
+ <link rel="self" title="Cars" href="Cars" />
10
+ <entry>
11
+ <id>http://test.com/test.svc/Cars(213L)</id>
12
+ <category term="Model.Car" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
13
+ <link rel="edit" title="Car" href="Cars(213L)" />
14
+ <title />
15
+ <updated>2013-10-28T19:59:15Z</updated>
16
+ <author>
17
+ <name />
18
+ </author>
19
+ <content type="application/xml">
20
+ <m:properties>
21
+ <d:id m:type="Edm.Int64">213</d:id>
22
+ <d:color>peach</d:color>
23
+ <d:num_spots m:type="Edm.Int32" m:null="true" />
24
+ <d:striped m:type="Edm.Byte" m:null="true" />
25
+ </m:properties>
26
+ </content>
27
+ </entry>
28
+ </feed>
@@ -0,0 +1,1645 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <edmx:Edmx xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx" Version="1.0">
3
+ <edmx:DataServices xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:DataServiceVersion="3.0" m:MaxDataServiceVersion="3.0">
4
+ <Schema xmlns="http://schemas.microsoft.com/ado/2009/11/edm" Namespace="VMM">
5
+ <EntityType Name="GuestInfo">
6
+ <Key>
7
+ <PropertyRef Name="VMId"/>
8
+ <PropertyRef Name="StampId"/>
9
+ </Key>
10
+ <Property Name="IPv4Addresses" Type="Edm.String"/>
11
+ <Property Name="IPv6Addresses" Type="Edm.String"/>
12
+ <Property Name="VMId" Type="Edm.Guid" Nullable="false"/>
13
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
14
+ </EntityType>
15
+ <EntityType Name="PerformanceData">
16
+ <Key>
17
+ <PropertyRef Name="TimeFrame"/>
18
+ <PropertyRef Name="PerformanceCounter"/>
19
+ <PropertyRef Name="VMId"/>
20
+ <PropertyRef Name="StampId"/>
21
+ </Key>
22
+ <Property Name="PerformanceHistory" Type="Collection(Edm.Int32)" Nullable="false"/>
23
+ <Property Name="TimeSamples" Type="Collection(Edm.DateTime)" Nullable="false"/>
24
+ <Property Name="TimeFrame" Type="Edm.String" Nullable="false"/>
25
+ <Property Name="PerformanceCounter" Type="Edm.String" Nullable="false"/>
26
+ <Property Name="VMId" Type="Edm.Guid" Nullable="false"/>
27
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
28
+ </EntityType>
29
+ <EntityType Name="UserRole">
30
+ <Key>
31
+ <PropertyRef Name="ID"/>
32
+ </Key>
33
+ <Property Name="AddMember" Type="Collection(Edm.String)" Nullable="false"/>
34
+ <Property Name="AddResource" Type="Collection(VMM.UserRoleResource)" Nullable="false"/>
35
+ <Property Name="AddScope" Type="Collection(VMM.UserRoleScope)" Nullable="false"/>
36
+ <Property Name="Description" Type="Edm.String"/>
37
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
38
+ <Property Name="Members" Type="Collection(Edm.String)" Nullable="false"/>
39
+ <Property Name="Name" Type="Edm.String"/>
40
+ <Property Name="ParentUserRoleId" Type="Edm.Guid"/>
41
+ <Property Name="Permission" Type="Collection(Edm.String)" Nullable="false"/>
42
+ <Property Name="Profile" Type="Edm.String"/>
43
+ <Property Name="Quotas" Type="Collection(VMM.UserRoleScope)" Nullable="false"/>
44
+ <Property Name="RemoveMember" Type="Collection(Edm.String)" Nullable="false"/>
45
+ <Property Name="UserRoleProfile" Type="Edm.String"/>
46
+ <Property Name="PermissionInput" Type="Collection(VMM.UserRolePermission)" Nullable="false"/>
47
+ <Property Name="RemoveResource" Type="Collection(VMM.UserRoleResource)" Nullable="false"/>
48
+ <Property Name="RemoveScope" Type="Collection(VMM.UserRoleScope)" Nullable="false"/>
49
+ <Property Name="VMId" Type="Edm.Guid"/>
50
+ <Property Name="VMTemplateId" Type="Edm.Guid"/>
51
+ <Property Name="UserRoleDataPath" Type="Collection(VMM.UserRoleDataPath)" Nullable="false"/>
52
+ <Property Name="VMNetworkQuota" Type="Collection(VMM.VMNetworkQuota)" Nullable="false"/>
53
+ <NavigationProperty Name="Clouds" Relationship="VMM.UserRole_Clouds" ToRole="Clouds" FromRole="UserRole"/>
54
+ </EntityType>
55
+ <ComplexType Name="UserRoleResource">
56
+ <Property Name="Resource" Type="Edm.Guid"/>
57
+ <Property Name="StampId" Type="Edm.Guid"/>
58
+ <Property Name="ResourceType" Type="Edm.String"/>
59
+ </ComplexType>
60
+ <ComplexType Name="UserRoleScope">
61
+ <Property Name="Scope" Type="Edm.Guid"/>
62
+ <Property Name="StampId" Type="Edm.Guid"/>
63
+ <Property Name="ScopeType" Type="Edm.String"/>
64
+ <Property Name="RoleCPUCount" Type="Edm.Int32"/>
65
+ <Property Name="RoleMemoryMB" Type="Edm.Int32"/>
66
+ <Property Name="RoleStorageGB" Type="Edm.Int32"/>
67
+ <Property Name="RoleCustomQuotaCount" Type="Edm.Int32"/>
68
+ <Property Name="RoleVMCount" Type="Edm.Int32"/>
69
+ <Property Name="MemberCPUCount" Type="Edm.Int32"/>
70
+ <Property Name="MemberMemoryMB" Type="Edm.Int32"/>
71
+ <Property Name="MemberStorageGB" Type="Edm.Int32"/>
72
+ <Property Name="MemberCustomQuotaCount" Type="Edm.Int32"/>
73
+ <Property Name="MemberVMCount" Type="Edm.Int32"/>
74
+ </ComplexType>
75
+ <ComplexType Name="UserRolePermission">
76
+ <Property Name="StampId" Type="Edm.Guid"/>
77
+ <Property Name="Permission" Type="Collection(Edm.String)" Nullable="false"/>
78
+ </ComplexType>
79
+ <ComplexType Name="UserRoleDataPath">
80
+ <Property Name="StampId" Type="Edm.Guid"/>
81
+ <Property Name="DataPath" Type="Edm.String"/>
82
+ </ComplexType>
83
+ <ComplexType Name="VMNetworkQuota">
84
+ <Property Name="StampId" Type="Edm.Guid"/>
85
+ <Property Name="VMNetworkMaximum" Type="Edm.Int32"/>
86
+ <Property Name="VMNetworkMaximumPerUser" Type="Edm.Int32"/>
87
+ <Property Name="RemoveVMNetworkMaximum" Type="Edm.Boolean"/>
88
+ <Property Name="RemoveVMNetworkMaximumPerUser" Type="Edm.Boolean"/>
89
+ </ComplexType>
90
+ <EntityType Name="VirtualMachine">
91
+ <Key>
92
+ <PropertyRef Name="ID"/>
93
+ <PropertyRef Name="StampId"/>
94
+ </Key>
95
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
96
+ <Property Name="AllocatedGPU" Type="Edm.String"/>
97
+ <Property Name="BackupEnabled" Type="Edm.Boolean"/>
98
+ <Property Name="BlockLiveMigrationIfHostBusy" Type="Edm.Boolean"/>
99
+ <Property Name="CheckpointLocation" Type="Edm.String"/>
100
+ <Property Name="CloudId" Type="Edm.Guid"/>
101
+ <Property Name="ComputerName" Type="Edm.String"/>
102
+ <Property Name="ComputerTierId" Type="Edm.Guid"/>
103
+ <Property Name="CostCenter" Type="Edm.String"/>
104
+ <Property Name="CPUCount" Type="Edm.Byte"/>
105
+ <Property Name="CPUMax" Type="Edm.Int32"/>
106
+ <Property Name="CPUReserve" Type="Edm.Int32"/>
107
+ <Property Name="CPUType" Type="Edm.String"/>
108
+ <Property Name="CPUUtilization" Type="Edm.Int32"/>
109
+ <Property Name="CreationSource" Type="Edm.String"/>
110
+ <Property Name="CreationTime" Type="Edm.DateTime"/>
111
+ <Property Name="DataExchangeEnabled" Type="Edm.Boolean"/>
112
+ <Property Name="DelayStart" Type="Edm.Int32"/>
113
+ <Property Name="DeployPath" Type="Edm.String"/>
114
+ <Property Name="Description" Type="Edm.String"/>
115
+ <Property Name="DiskIO" Type="Edm.Int32"/>
116
+ <Property Name="Dismiss" Type="Edm.Boolean"/>
117
+ <Property Name="DynamicMemoryDemandMB" Type="Edm.Int32"/>
118
+ <Property Name="Enabled" Type="Edm.Boolean"/>
119
+ <Property Name="ExcludeFromPRO" Type="Edm.Boolean"/>
120
+ <Property Name="ExpectedCPUUtilization" Type="Edm.Int32"/>
121
+ <Property Name="FailedJobID" Type="Edm.Guid"/>
122
+ <Property Name="HasPassthroughDisk" Type="Edm.Boolean"/>
123
+ <Property Name="HasSavedState" Type="Edm.Boolean"/>
124
+ <Property Name="HasVMAdditions" Type="Edm.Boolean"/>
125
+ <Property Name="HeartbeatEnabled" Type="Edm.Boolean"/>
126
+ <Property Name="HighlyAvailable" Type="Edm.Boolean"/>
127
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
128
+ <Property Name="IsFaultTolerant" Type="Edm.Boolean"/>
129
+ <Property Name="IsHighlyAvailable" Type="Edm.Boolean"/>
130
+ <Property Name="IsUndergoingLiveMigration" Type="Edm.Boolean"/>
131
+ <Property Name="LastRestoredCheckpointId" Type="Edm.Guid"/>
132
+ <Property Name="LibraryGroup" Type="Edm.String"/>
133
+ <Property Name="LimitCPUForMigration" Type="Edm.Boolean"/>
134
+ <Property Name="LimitCPUFunctionality" Type="Edm.Boolean"/>
135
+ <Property Name="VMNetworkAssignments" Type="Collection(VMM.VMNetworkAssignment)" Nullable="false"/>
136
+ <Property Name="Location" Type="Edm.String"/>
137
+ <Property Name="MarkedAsTemplate" Type="Edm.Boolean"/>
138
+ <Property Name="Memory" Type="Edm.Int32"/>
139
+ <Property Name="MemoryAssignedMB" Type="Edm.Int32"/>
140
+ <Property Name="MemoryAvailablePercentage" Type="Edm.Int16"/>
141
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
142
+ <Property Name="MostRecentTaskId" Type="Edm.Guid"/>
143
+ <Property Name="Name" Type="Edm.String"/>
144
+ <Property Name="NetworkUtilization" Type="Edm.Int32"/>
145
+ <Property Name="NumLock" Type="Edm.Boolean"/>
146
+ <Property Name="OperatingSystem" Type="Edm.String"/>
147
+ <Property Name="OperatingSystemShutdownEnabled" Type="Edm.Boolean"/>
148
+ <Property Name="Operation" Type="Edm.String"/>
149
+ <Property Name="Owner" Type="VMM.UserAndRole"/>
150
+ <Property Name="GrantedToList" Type="Collection(VMM.UserAndRole)" Nullable="false"/>
151
+ <Property Name="Path" Type="Edm.String"/>
152
+ <Property Name="PerfCPUUtilization" Type="Edm.Int32"/>
153
+ <Property Name="PerfDiskBytesRead" Type="Edm.Int64"/>
154
+ <Property Name="PerfDiskBytesWrite" Type="Edm.Int64"/>
155
+ <Property Name="PerfNetworkBytesRead" Type="Edm.Int64"/>
156
+ <Property Name="PerfNetworkBytesWrite" Type="Edm.Int64"/>
157
+ <Property Name="CPURelativeWeight" Type="Edm.Int32"/>
158
+ <Property Name="Retry" Type="Edm.Boolean"/>
159
+ <Property Name="RunGuestAccount" Type="Edm.String"/>
160
+ <Property Name="ServiceDeploymentErrorMessage" Type="Edm.String"/>
161
+ <Property Name="ServiceId" Type="Edm.Guid"/>
162
+ <Property Name="SharePath" Type="Edm.String"/>
163
+ <Property Name="SourceObjectType" Type="Edm.String"/>
164
+ <Property Name="StartAction" Type="Edm.String"/>
165
+ <Property Name="StartVM" Type="Edm.Boolean"/>
166
+ <Property Name="Status" Type="Edm.String"/>
167
+ <Property Name="StatusString" Type="Edm.String"/>
168
+ <Property Name="StopAction" Type="Edm.String"/>
169
+ <Property Name="Tag" Type="Edm.String"/>
170
+ <Property Name="TimeSynchronizationEnabled" Type="Edm.Boolean"/>
171
+ <Property Name="TotalSize" Type="Edm.Int64"/>
172
+ <Property Name="Undo" Type="Edm.Boolean"/>
173
+ <Property Name="UndoDisksEnabled" Type="Edm.Boolean"/>
174
+ <Property Name="UpgradeDomain" Type="Edm.Int32"/>
175
+ <Property Name="UseCluster" Type="Edm.Boolean"/>
176
+ <Property Name="UseLAN" Type="Edm.Boolean"/>
177
+ <Property Name="VirtualHardDiskId" Type="Edm.Guid"/>
178
+ <Property Name="VirtualizationPlatform" Type="Edm.String"/>
179
+ <Property Name="CapabilityProfile" Type="Edm.String"/>
180
+ <Property Name="VMBaseConfigurationId" Type="Edm.Guid"/>
181
+ <Property Name="VMConfigResource" Type="Edm.String"/>
182
+ <Property Name="VMCPath" Type="Edm.String"/>
183
+ <Property Name="VMHostName" Type="Edm.String"/>
184
+ <Property Name="VMId" Type="Edm.Guid"/>
185
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
186
+ <Property Name="VMResource" Type="Edm.String"/>
187
+ <Property Name="VMResourceGroup" Type="Edm.String"/>
188
+ <Property Name="VirtualMachineState" Type="Edm.String"/>
189
+ <Property Name="VMTemplateId" Type="Edm.Guid"/>
190
+ <Property Name="HardwareProfileId" Type="Edm.Guid"/>
191
+ <Property Name="BlockDynamicOptimization" Type="Edm.Boolean"/>
192
+ <Property Name="CPULimitForMigration" Type="Edm.Boolean"/>
193
+ <Property Name="CPULimitFunctionality" Type="Edm.Boolean"/>
194
+ <Property Name="Domain" Type="Edm.String"/>
195
+ <Property Name="DynamicMemoryBufferPercentage" Type="Edm.Int32"/>
196
+ <Property Name="DynamicMemoryEnabled" Type="Edm.Boolean"/>
197
+ <Property Name="DynamicMemoryMaximumMB" Type="Edm.Int32"/>
198
+ <Property Name="FullName" Type="Edm.String"/>
199
+ <Property Name="MemoryWeight" Type="Edm.Int32"/>
200
+ <Property Name="OrganizationName" Type="Edm.String"/>
201
+ <Property Name="DelayStartSeconds" Type="Edm.Int32"/>
202
+ <Property Name="ProductKey" Type="Edm.String"/>
203
+ <Property Name="WorkGroup" Type="Edm.String"/>
204
+ <Property Name="TimeZone" Type="Edm.Int32"/>
205
+ <Property Name="RunAsAccountUserName" Type="Edm.String"/>
206
+ <Property Name="UserName" Type="Edm.String"/>
207
+ <Property Name="Password" Type="Edm.String"/>
208
+ <Property Name="LocalAdminRunAsAccountName" Type="Edm.String"/>
209
+ <Property Name="LocalAdminUserName" Type="Edm.String"/>
210
+ <Property Name="LocalAdminPassword" Type="Edm.String"/>
211
+ <Property Name="LinuxDomainName" Type="Edm.String"/>
212
+ <Property Name="LinuxAdministratorSSHKey" Type="Edm.String"/>
213
+ <Property Name="DeploymentErrorInfo" Type="VMM.ErrorInfo"/>
214
+ <Property Name="NewVirtualNetworkAdapterInput" Type="Collection(VMM.NewVMVirtualNetworkAdapterInput)" Nullable="false"/>
215
+ <NavigationProperty Name="Cloud" Relationship="VMM.VirtualMachine_Cloud" ToRole="Cloud" FromRole="VirtualMachine"/>
216
+ <NavigationProperty Name="MostRecentTask" Relationship="VMM.VirtualMachine_MostRecentTask" ToRole="MostRecentTask" FromRole="VirtualMachine"/>
217
+ <NavigationProperty Name="FailedJob" Relationship="VMM.VirtualMachine_FailedJob" ToRole="FailedJob" FromRole="VirtualMachine"/>
218
+ <NavigationProperty Name="VirtualNetworkAdapters" Relationship="VMM.VirtualMachine_VirtualNetworkAdapters" ToRole="VirtualNetworkAdapters" FromRole="VirtualMachine"/>
219
+ <NavigationProperty Name="VMCheckpoints" Relationship="VMM.VirtualMachine_VMCheckpoints" ToRole="VMCheckpoints" FromRole="VirtualMachine"/>
220
+ <NavigationProperty Name="VirtualSCSIAdapters" Relationship="VMM.VirtualMachine_VirtualSCSIAdapters" ToRole="VirtualSCSIAdapters" FromRole="VirtualMachine"/>
221
+ <NavigationProperty Name="VirtualHardDisks" Relationship="VMM.VirtualMachine_VirtualHardDisks" ToRole="VirtualHardDisks" FromRole="VirtualMachine"/>
222
+ <NavigationProperty Name="VirtualDVDDrives" Relationship="VMM.VirtualMachine_VirtualDVDDrives" ToRole="VirtualDVDDrives" FromRole="VirtualMachine"/>
223
+ <NavigationProperty Name="VirtualDiskDrives" Relationship="VMM.VirtualMachine_VirtualDiskDrives" ToRole="VirtualDiskDrives" FromRole="VirtualMachine"/>
224
+ </EntityType>
225
+ <ComplexType Name="VMNetworkAssignment">
226
+ <Property Name="VirtualNetworkAdapterID" Type="Edm.Guid"/>
227
+ <Property Name="VMNetworkName" Type="Edm.String"/>
228
+ </ComplexType>
229
+ <ComplexType Name="UserAndRole">
230
+ <Property Name="UserName" Type="Edm.String"/>
231
+ <Property Name="RoleName" Type="Edm.String"/>
232
+ <Property Name="RoleID" Type="Edm.Guid"/>
233
+ </ComplexType>
234
+ <ComplexType Name="ErrorInfo">
235
+ <Property Name="CloudProblem" Type="Edm.String"/>
236
+ <Property Name="Code" Type="Edm.String"/>
237
+ <Property Name="DetailedCode" Type="Edm.Int32"/>
238
+ <Property Name="DetailedErrorCode" Type="Edm.String"/>
239
+ <Property Name="DetailedSource" Type="Edm.String"/>
240
+ <Property Name="DisplayableErrorCode" Type="Edm.Int64"/>
241
+ <Property Name="ErrorCodeString" Type="Edm.String"/>
242
+ <Property Name="ErrorType" Type="Edm.String"/>
243
+ <Property Name="ExceptionDetails" Type="Edm.String"/>
244
+ <Property Name="IsConditionallyTerminating" Type="Edm.Boolean"/>
245
+ <Property Name="IsDeploymentBlocker" Type="Edm.Boolean"/>
246
+ <Property Name="IsMomAlert" Type="Edm.Boolean"/>
247
+ <Property Name="IsSuccess" Type="Edm.Boolean"/>
248
+ <Property Name="IsTerminating" Type="Edm.Boolean"/>
249
+ <Property Name="MessageParameters" Type="Edm.String"/>
250
+ <Property Name="MomAlertSeverity" Type="Edm.String"/>
251
+ <Property Name="Problem" Type="Edm.String"/>
252
+ <Property Name="RecommendedAction" Type="Edm.String"/>
253
+ <Property Name="RecommendedActionCLI" Type="Edm.String"/>
254
+ <Property Name="ShowDetailedError" Type="Edm.Boolean"/>
255
+ </ComplexType>
256
+ <ComplexType Name="NewVMVirtualNetworkAdapterInput">
257
+ <Property Name="VMNetworkName" Type="Edm.String"/>
258
+ <Property Name="MACAddressType" Type="Edm.String"/>
259
+ <Property Name="MACAddress" Type="Edm.String"/>
260
+ <Property Name="IPv4AddressType" Type="Edm.String"/>
261
+ <Property Name="IPv6AddressType" Type="Edm.String"/>
262
+ <Property Name="VLanEnabled" Type="Edm.Boolean"/>
263
+ <Property Name="VLanId" Type="Edm.Int16"/>
264
+ </ComplexType>
265
+ <EntityType Name="VirtualDVDDrive">
266
+ <Key>
267
+ <PropertyRef Name="ID"/>
268
+ <PropertyRef Name="StampId"/>
269
+ </Key>
270
+ <Property Name="Accessibility" Type="Edm.String"/>
271
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
272
+ <Property Name="Bus" Type="Edm.Byte"/>
273
+ <Property Name="BusType" Type="Edm.String"/>
274
+ <Property Name="Enabled" Type="Edm.Boolean"/>
275
+ <Property Name="HostDrive" Type="Edm.String"/>
276
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
277
+ <Property Name="ISOId" Type="Edm.Guid"/>
278
+ <Property Name="ISOLinked" Type="Edm.Boolean"/>
279
+ <Property Name="JobGroupId" Type="Edm.Guid"/>
280
+ <Property Name="LUN" Type="Edm.Byte"/>
281
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
282
+ <Property Name="Name" Type="Edm.String"/>
283
+ <Property Name="Size" Type="Edm.Int64"/>
284
+ <Property Name="TemplateId" Type="Edm.Guid"/>
285
+ <Property Name="VMId" Type="Edm.Guid"/>
286
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
287
+ <Property Name="ChildObjectIDs" Type="Collection(Edm.Guid)" Nullable="false"/>
288
+ <Property Name="Connection" Type="Edm.String"/>
289
+ <Property Name="Description" Type="Edm.String"/>
290
+ <NavigationProperty Name="ISO" Relationship="VMM.VirtualDVDDrive_ISO" ToRole="ISO" FromRole="VirtualDVDDrive"/>
291
+ </EntityType>
292
+ <EntityType Name="VirtualHardDisk">
293
+ <Key>
294
+ <PropertyRef Name="ID"/>
295
+ <PropertyRef Name="StampId"/>
296
+ </Key>
297
+ <Property Name="Accessibility" Type="Edm.String"/>
298
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
299
+ <Property Name="Description" Type="Edm.String"/>
300
+ <Property Name="Directory" Type="Edm.String"/>
301
+ <Property Name="Enabled" Type="Edm.Boolean"/>
302
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
303
+ <Property Name="JobGroupId" Type="Edm.Guid"/>
304
+ <Property Name="MaximumSize" Type="Edm.Int64"/>
305
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
306
+ <Property Name="Name" Type="Edm.String"/>
307
+ <Property Name="Owner" Type="VMM.UserAndRole"/>
308
+ <Property Name="OwnerSid" Type="Edm.String"/>
309
+ <Property Name="ParentDiskId" Type="Edm.Guid"/>
310
+ <Property Name="SharePath" Type="Edm.String"/>
311
+ <Property Name="Size" Type="Edm.Int64"/>
312
+ <Property Name="State" Type="Edm.String"/>
313
+ <Property Name="VHDType" Type="Edm.String"/>
314
+ <Property Name="VMId" Type="Edm.Guid"/>
315
+ <Property Name="TemplateId" Type="Edm.Guid"/>
316
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
317
+ <Property Name="FamilyName" Type="Edm.String"/>
318
+ <Property Name="Release" Type="Edm.String"/>
319
+ <Property Name="CloudId" Type="Edm.Guid"/>
320
+ <Property Name="HostVolumeId" Type="Edm.Guid"/>
321
+ <Property Name="IsOrphaned" Type="Edm.Boolean"/>
322
+ <Property Name="IsResourceGroup" Type="Edm.Boolean"/>
323
+ <Property Name="LibraryGroup" Type="Edm.String"/>
324
+ <Property Name="LibraryShareId" Type="Edm.Guid"/>
325
+ <Property Name="Location" Type="Edm.String"/>
326
+ <Property Name="Namespace" Type="Edm.String"/>
327
+ <Property Name="ReleaseTime" Type="Edm.DateTime"/>
328
+ <Property Name="SANCopyCapable" Type="Edm.Boolean"/>
329
+ <Property Name="Type" Type="Edm.String"/>
330
+ <Property Name="VirtualizationPlatform" Type="Edm.String"/>
331
+ <Property Name="OperatingSystem" Type="Edm.String"/>
332
+ <Property Name="OperatingSystemId" Type="Edm.Guid"/>
333
+ </EntityType>
334
+ <EntityType Name="VMTemplate">
335
+ <Key>
336
+ <PropertyRef Name="StampId"/>
337
+ <PropertyRef Name="ID"/>
338
+ </Key>
339
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
340
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
341
+ <Property Name="AccessedTime" Type="Edm.DateTime"/>
342
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
343
+ <Property Name="Admin" Type="Edm.String"/>
344
+ <Property Name="AdminPasswordHasValue" Type="Edm.Boolean"/>
345
+ <Property Name="ComputerName" Type="Edm.String"/>
346
+ <Property Name="CPUCount" Type="Edm.Byte"/>
347
+ <Property Name="CPUMax" Type="Edm.Int32"/>
348
+ <Property Name="CPUReserve" Type="Edm.Int32"/>
349
+ <Property Name="CPUTypeId" Type="Edm.Guid"/>
350
+ <Property Name="CreationTime" Type="Edm.DateTime"/>
351
+ <Property Name="DiskIO" Type="Edm.Int32"/>
352
+ <Property Name="DomainAdmin" Type="Edm.String"/>
353
+ <Property Name="DomainAdminPasswordHasValue" Type="Edm.Boolean"/>
354
+ <Property Name="ExpectedCPUUtilization" Type="Edm.Int32"/>
355
+ <Property Name="Enabled" Type="Edm.Boolean"/>
356
+ <Property Name="FullName" Type="Edm.String"/>
357
+ <Property Name="HasVMAdditions" Type="Edm.Boolean"/>
358
+ <Property Name="IsHighlyAvailable" Type="Edm.Boolean"/>
359
+ <Property Name="JoinDomain" Type="Edm.String"/>
360
+ <Property Name="JoinWorkgroup" Type="Edm.String"/>
361
+ <Property Name="LibraryGroup" Type="Edm.String"/>
362
+ <Property Name="LimitCPUForMigration" Type="Edm.Boolean"/>
363
+ <Property Name="LimitCPUFunctionality" Type="Edm.Boolean"/>
364
+ <Property Name="Location" Type="Edm.String"/>
365
+ <Property Name="Memory" Type="Edm.Int32"/>
366
+ <Property Name="MergeAnswerFile" Type="Edm.Boolean"/>
367
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
368
+ <Property Name="Name" Type="Edm.String"/>
369
+ <Property Name="NetworkUtilization" Type="Edm.Int32"/>
370
+ <Property Name="OperatingSystem" Type="Edm.String"/>
371
+ <Property Name="OrgName" Type="Edm.String"/>
372
+ <Property Name="Owner" Type="VMM.UserAndRole"/>
373
+ <Property Name="GrantedToList" Type="Collection(VMM.UserAndRole)" Nullable="false"/>
374
+ <Property Name="QuotaPoint" Type="Edm.Int32"/>
375
+ <Property Name="ProductKeyHasValue" Type="Edm.Boolean"/>
376
+ <Property Name="RelativeWeight" Type="Edm.Int32"/>
377
+ <Property Name="ShareSCSIBus" Type="Edm.Boolean"/>
378
+ <Property Name="Tag" Type="Edm.String"/>
379
+ <Property Name="TimeZone" Type="Edm.Int32"/>
380
+ <Property Name="TotalVHDCapacity" Type="Edm.Int64"/>
381
+ <Property Name="UndoDisksEnabled" Type="Edm.Boolean"/>
382
+ <Property Name="UseHardwareAssistedVirtualization" Type="Edm.Boolean"/>
383
+ <Property Name="Accessibility" Type="Edm.String"/>
384
+ <Property Name="CostCenter" Type="Edm.String"/>
385
+ <Property Name="Description" Type="Edm.String"/>
386
+ <Property Name="IsTagEmpty" Type="Edm.Boolean"/>
387
+ <Property Name="NicCount" Type="Edm.Int32"/>
388
+ <Property Name="NumLockEnabled" Type="Edm.Boolean"/>
389
+ <Property Name="VMAddition" Type="Edm.String"/>
390
+ <Property Name="IsCustomizable" Type="Edm.Boolean"/>
391
+ <Property Name="DomainAdminPasswordIsServiceSetting" Type="Edm.Boolean"/>
392
+ <Property Name="SANCopyCapable" Type="Edm.Boolean"/>
393
+ <Property Name="IsTemporaryTemplate" Type="Edm.Boolean"/>
394
+ <Property Name="VMTemplateId" Type="Edm.Guid"/>
395
+ <Property Name="VirtualHardDiskId" Type="Edm.Guid"/>
396
+ <Property Name="VMId" Type="Edm.Guid"/>
397
+ <Property Name="SharePath" Type="Edm.String"/>
398
+ <Property Name="ApplicationProfileId" Type="Edm.Guid"/>
399
+ <Property Name="CloudID" Type="Edm.Guid"/>
400
+ <Property Name="DynamicMemoryBufferPercentage" Type="Edm.Int16"/>
401
+ <Property Name="DynamicMemoryEnabled" Type="Edm.Boolean"/>
402
+ <Property Name="DynamicMemoryMaximumMB" Type="Edm.Int32"/>
403
+ <Property Name="MemoryWeight" Type="Edm.Int16"/>
404
+ <Property Name="DynamicMemoryPreferredBufferPercentage" Type="Edm.Int16"/>
405
+ <Property Name="SQLProfileId" Type="Edm.Guid"/>
406
+ <Property Name="VirtualFloppyDriveId" Type="Edm.Guid"/>
407
+ <Property Name="BootOrder" Type="Collection(Edm.String)" Nullable="false"/>
408
+ <Property Name="CustomProperties" Type="Collection(Edm.String)" Nullable="false"/>
409
+ <Property Name="GuiRunOnceCommands" Type="Collection(Edm.String)" Nullable="false"/>
410
+ <Property Name="ServerFeatures" Type="Collection(Edm.String)" Nullable="false"/>
411
+ <Property Name="Status" Type="Edm.String"/>
412
+ <Property Name="VirtualizationPlatform" Type="Edm.String"/>
413
+ <Property Name="CapabilityProfile" Type="Edm.String"/>
414
+ <Property Name="AutoLogonCount" Type="Edm.Int32"/>
415
+ <Property Name="DomainJoinOrganizationalUnit" Type="Edm.String"/>
416
+ <Property Name="SANStatus" Type="Collection(Edm.String)" Nullable="false"/>
417
+ <NavigationProperty Name="VirtualNetworkAdapters" Relationship="VMM.VMTemplate_VirtualNetworkAdapters" ToRole="VirtualNetworkAdapters" FromRole="VMTemplate"/>
418
+ <NavigationProperty Name="VirtualSCSIAdapters" Relationship="VMM.VMTemplate_VirtualSCSIAdapters" ToRole="VirtualSCSIAdapters" FromRole="VMTemplate"/>
419
+ <NavigationProperty Name="VirtualHardDisks" Relationship="VMM.VMTemplate_VirtualHardDisks" ToRole="VirtualHardDisks" FromRole="VMTemplate"/>
420
+ <NavigationProperty Name="VirtualDVDDrives" Relationship="VMM.VMTemplate_VirtualDVDDrives" ToRole="VirtualDVDDrives" FromRole="VMTemplate"/>
421
+ <NavigationProperty Name="VirtualDiskDrives" Relationship="VMM.VMTemplate_VirtualDiskDrives" ToRole="VirtualDiskDrives" FromRole="VMTemplate"/>
422
+ </EntityType>
423
+ <EntityType Name="VirtualNetworkAdapter">
424
+ <Key>
425
+ <PropertyRef Name="ID"/>
426
+ <PropertyRef Name="StampId"/>
427
+ </Key>
428
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
429
+ <Property Name="Name" Type="Edm.String"/>
430
+ <Property Name="VirtualNetwork" Type="Edm.String"/>
431
+ <Property Name="VMwarePortGroup" Type="Edm.String"/>
432
+ <Property Name="EthernetAddressType" Type="Edm.String"/>
433
+ <Property Name="PhysicalAddressType" Type="Edm.String"/>
434
+ <Property Name="EthernetAddress" Type="Edm.String"/>
435
+ <Property Name="PhysicalAddress" Type="Edm.String"/>
436
+ <Property Name="VirtualNetworkAdapterType" Type="Edm.String"/>
437
+ <Property Name="Location" Type="Edm.String"/>
438
+ <Property Name="Tag" Type="Edm.String"/>
439
+ <Property Name="Description" Type="Edm.String"/>
440
+ <Property Name="VMNetworkId" Type="Edm.Guid"/>
441
+ <Property Name="VMNetworkName" Type="Edm.String"/>
442
+ <Property Name="TemplateId" Type="Edm.Guid"/>
443
+ <Property Name="VMId" Type="Edm.Guid"/>
444
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
445
+ <Property Name="MACAddressesSpoofingEnabled" Type="Edm.Boolean"/>
446
+ <Property Name="SlotId" Type="Edm.Int32"/>
447
+ <Property Name="VLanEnabled" Type="Edm.Boolean"/>
448
+ <Property Name="VLanId" Type="Edm.Int16"/>
449
+ <Property Name="VMNetworkOptimizationEnabled" Type="Edm.Boolean"/>
450
+ <Property Name="VmwAdapterIndex" Type="Edm.Int32"/>
451
+ <Property Name="Accessibility" Type="Edm.String"/>
452
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
453
+ <Property Name="ChildObjectIDs" Type="Collection(Edm.Guid)" Nullable="false"/>
454
+ <Property Name="Enabled" Type="Edm.Boolean"/>
455
+ <Property Name="IPv4AddressType" Type="Edm.String"/>
456
+ <Property Name="IPv6AddressType" Type="Edm.String"/>
457
+ <Property Name="MACAddress" Type="Edm.String"/>
458
+ <Property Name="MACAddressesSpoolingEnabled" Type="Edm.Boolean"/>
459
+ <Property Name="MACAddressSpoofingEnabled" Type="Edm.Boolean"/>
460
+ <Property Name="EnableMACAddressSpoofing" Type="Edm.Boolean"/>
461
+ <Property Name="MACAddressType" Type="Edm.String"/>
462
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
463
+ <Property Name="ParentId" Type="Edm.Guid"/>
464
+ <Property Name="RequiredBandwidth" Type="Edm.String"/>
465
+ <Property Name="IsSynthetic" Type="Edm.Boolean"/>
466
+ </EntityType>
467
+ <EntityType Name="VirtualSCSIAdapter">
468
+ <Key>
469
+ <PropertyRef Name="ID"/>
470
+ <PropertyRef Name="StampId"/>
471
+ </Key>
472
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
473
+ <Property Name="Name" Type="Edm.String"/>
474
+ <Property Name="AdapterID" Type="Edm.Byte"/>
475
+ <Property Name="Bus" Type="Edm.Byte"/>
476
+ <Property Name="Shared" Type="Edm.Boolean"/>
477
+ <Property Name="TemplateId" Type="Edm.Guid"/>
478
+ <Property Name="VMId" Type="Edm.Guid"/>
479
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
480
+ <Property Name="SCSIControllerType" Type="Edm.String"/>
481
+ <Property Name="Accessibility" Type="Edm.String"/>
482
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
483
+ <Property Name="Description" Type="Edm.String"/>
484
+ <Property Name="Enabled" Type="Edm.Boolean"/>
485
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
486
+ </EntityType>
487
+ <EntityType Name="ISO">
488
+ <Key>
489
+ <PropertyRef Name="ID"/>
490
+ <PropertyRef Name="StampId"/>
491
+ </Key>
492
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
493
+ <Property Name="State" Type="Edm.String"/>
494
+ <Property Name="SharePath" Type="Edm.String"/>
495
+ <Property Name="Directory" Type="Edm.String"/>
496
+ <Property Name="Size" Type="Edm.Int64"/>
497
+ <Property Name="LibraryGroup" Type="Edm.String"/>
498
+ <Property Name="Owner" Type="VMM.UserAndRole"/>
499
+ <Property Name="OwnerSid" Type="Edm.String"/>
500
+ <Property Name="Accessibility" Type="Edm.String"/>
501
+ <Property Name="Name" Type="Edm.String"/>
502
+ <Property Name="Description" Type="Edm.String"/>
503
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
504
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
505
+ <Property Name="Enabled" Type="Edm.Boolean"/>
506
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
507
+ <Property Name="FamilyName" Type="Edm.String"/>
508
+ <Property Name="HostVolumeId" Type="Edm.Guid"/>
509
+ <Property Name="IsOrphaned" Type="Edm.Boolean"/>
510
+ <Property Name="LibraryShareId" Type="Edm.Guid"/>
511
+ <Property Name="Namespace" Type="Edm.String"/>
512
+ <Property Name="CloudId" Type="Edm.Guid"/>
513
+ <Property Name="Release" Type="Edm.String"/>
514
+ <NavigationProperty Name="LibraryShare" Relationship="VMM.ISO_LibraryShare" ToRole="LibraryShare" FromRole="ISO"/>
515
+ </EntityType>
516
+ <EntityType Name="Job">
517
+ <Key>
518
+ <PropertyRef Name="ID"/>
519
+ <PropertyRef Name="StampId"/>
520
+ </Key>
521
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
522
+ <Property Name="Name" Type="Edm.String"/>
523
+ <Property Name="CurrentStepId" Type="Edm.Guid"/>
524
+ <Property Name="RootStepId" Type="Edm.Guid"/>
525
+ <Property Name="CmdletName" Type="Edm.String"/>
526
+ <Property Name="EndTime" Type="Edm.DateTime"/>
527
+ <Property Name="IsCompleted" Type="Edm.Boolean"/>
528
+ <Property Name="IsRestartable" Type="Edm.Boolean"/>
529
+ <Property Name="IsStoppable" Type="Edm.Boolean"/>
530
+ <Property Name="IsVisible" Type="Edm.Boolean"/>
531
+ <Property Name="Owner" Type="Edm.String"/>
532
+ <Property Name="OwnerSID" Type="Edm.String"/>
533
+ <Property Name="ProgressValue" Type="Edm.Int32"/>
534
+ <Property Name="Progress" Type="Edm.String"/>
535
+ <Property Name="ResultObjectTypeName" Type="Edm.String"/>
536
+ <Property Name="ResultName" Type="Edm.String"/>
537
+ <Property Name="Source" Type="Edm.String"/>
538
+ <Property Name="StartTime" Type="Edm.DateTime"/>
539
+ <Property Name="Status" Type="Edm.String"/>
540
+ <Property Name="StatusString" Type="Edm.String"/>
541
+ <Property Name="Target" Type="Edm.String"/>
542
+ <Property Name="TargetObjectID" Type="Edm.Guid"/>
543
+ <Property Name="Description" Type="VMM.JobDescription"/>
544
+ <Property Name="WasNotifiedOfCancel" Type="Edm.Boolean"/>
545
+ <Property Name="PROTipID" Type="Edm.Guid"/>
546
+ <Property Name="ResultObjectID" Type="Edm.Guid"/>
547
+ <Property Name="TargetObjectType" Type="Edm.String"/>
548
+ <Property Name="AreAuditRecordsAvailable" Type="Edm.Boolean"/>
549
+ <Property Name="ResultObjectType" Type="Edm.String"/>
550
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
551
+ <Property Name="StepsLoaded" Type="Edm.Boolean"/>
552
+ <Property Name="UserName" Type="Edm.String"/>
553
+ <Property Name="Password" Type="Edm.String"/>
554
+ <Property Name="SkipLastFailedStep" Type="Edm.Boolean"/>
555
+ <Property Name="ErrorInfo" Type="VMM.ErrorInfo"/>
556
+ <Property Name="AdditionalMessages" Type="Collection(VMM.ErrorInfo)" Nullable="false"/>
557
+ </EntityType>
558
+ <ComplexType Name="JobDescription">
559
+ <Property Name="CanSkipLastFailedStep" Type="Edm.Boolean"/>
560
+ <Property Name="Code" Type="Edm.String"/>
561
+ <Property Name="DescriptionCodeString" Type="Edm.String"/>
562
+ <Property Name="IsRestartable" Type="Edm.Boolean"/>
563
+ <Property Name="IsStoppable" Type="Edm.Boolean"/>
564
+ <Property Name="Name" Type="Edm.String"/>
565
+ <Property Name="RequiresCredentialsForRestart" Type="Edm.Boolean"/>
566
+ </ComplexType>
567
+ <EntityType Name="Cloud">
568
+ <Key>
569
+ <PropertyRef Name="ID"/>
570
+ <PropertyRef Name="StampId"/>
571
+ </Key>
572
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
573
+ <Property Name="Name" Type="Edm.String"/>
574
+ <Property Name="Description" Type="Edm.String"/>
575
+ <Property Name="LastModifiedDate" Type="Edm.DateTime"/>
576
+ <Property Name="WritableLibraryPath" Type="Edm.String"/>
577
+ <Property Name="UserRoleID" Type="Edm.Guid"/>
578
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
579
+ <NavigationProperty Name="Capacity" Relationship="VMM.Cloud_Capacity" ToRole="Capacity" FromRole="Cloud"/>
580
+ <NavigationProperty Name="LogicalNetworks" Relationship="VMM.Cloud_LogicalNetworks" ToRole="LogicalNetworks" FromRole="Cloud"/>
581
+ <NavigationProperty Name="CapabilityProfiles" Relationship="VMM.Cloud_CapabilityProfiles" ToRole="CapabilityProfiles" FromRole="Cloud"/>
582
+ <NavigationProperty Name="LibraryShares" Relationship="VMM.Cloud_LibraryShares" ToRole="LibraryShares" FromRole="Cloud"/>
583
+ <NavigationProperty Name="QuotaAndUsageComponents" Relationship="VMM.Cloud_QuotaAndUsageComponents" ToRole="QuotaAndUsageComponents" FromRole="Cloud"/>
584
+ </EntityType>
585
+ <EntityType Name="CapabilityProfile">
586
+ <Key>
587
+ <PropertyRef Name="ID"/>
588
+ <PropertyRef Name="StampId"/>
589
+ </Key>
590
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
591
+ <Property Name="Name" Type="Edm.String"/>
592
+ <Property Name="Description" Type="Edm.String"/>
593
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
594
+ <Property Name="COM1PipeNameInitial" Type="Edm.String"/>
595
+ <Property Name="COM1TextFileName" Type="Edm.String"/>
596
+ <Property Name="COM2PipeNameInitial" Type="Edm.String"/>
597
+ <Property Name="COM2TextFileNameInitial" Type="Edm.String"/>
598
+ <Property Name="CPUCompatibilityModeValue" Type="Edm.Boolean"/>
599
+ <Property Name="CPUCompatibilityModeValueCanChange" Type="Edm.Boolean"/>
600
+ <Property Name="CPUCountInitial" Type="Edm.Int32"/>
601
+ <Property Name="CPUCountMaximum" Type="Edm.Int32"/>
602
+ <Property Name="CPUCountMinimum" Type="Edm.Int32"/>
603
+ <Property Name="CPUPriorityCustomInitial" Type="Edm.Int32"/>
604
+ <Property Name="CPUPriorityCustomMaximum" Type="Edm.Int32"/>
605
+ <Property Name="CPUPriorityCustomMinimum" Type="Edm.Int32"/>
606
+ <Property Name="CPUPriorityHighInitial" Type="Edm.Int32"/>
607
+ <Property Name="CPUPriorityHighMaximum" Type="Edm.Int32"/>
608
+ <Property Name="CPUPriorityHighMinimum" Type="Edm.Int32"/>
609
+ <Property Name="CPUPriorityLowInitial" Type="Edm.Int32"/>
610
+ <Property Name="CPUPriorityLowMaximum" Type="Edm.Int32"/>
611
+ <Property Name="CPUPriorityLowMinimum" Type="Edm.Int32"/>
612
+ <Property Name="CPUPriorityNormalInitial" Type="Edm.Int32"/>
613
+ <Property Name="CPUPriorityNormalMaximum" Type="Edm.Int32"/>
614
+ <Property Name="CPUPriorityNormalMinimum" Type="Edm.Int32"/>
615
+ <Property Name="CreateNewDiskCanChange" Type="Edm.Boolean"/>
616
+ <Property Name="CreateNewDiskInitial" Type="Edm.Boolean"/>
617
+ <Property Name="DifferencingVirtualHardDiskValue" Type="Edm.Boolean"/>
618
+ <Property Name="DifferencingVirtualHardDiskValueCanChange" Type="Edm.Boolean"/>
619
+ <Property Name="DVDDriveChannelInitial" Type="Edm.Int32"/>
620
+ <Property Name="DVDDriveChannelMaximum" Type="Edm.Int32"/>
621
+ <Property Name="DVDDriveChannelMinimum" Type="Edm.Int32"/>
622
+ <Property Name="DVDImageFileInitial" Type="Edm.Guid"/>
623
+ <Property Name="DynamicMemoryValue" Type="Edm.Boolean"/>
624
+ <Property Name="DynamicMemoryValueCanChange" Type="Edm.Boolean"/>
625
+ <Property Name="DynamicVirtualHardDiskValue" Type="Edm.Boolean"/>
626
+ <Property Name="DynamicVirtualHardDiskValueCanChange" Type="Edm.Boolean"/>
627
+ <Property Name="EnableNumLockCanChange" Type="Edm.Boolean"/>
628
+ <Property Name="EnableNumLockInitial" Type="Edm.Boolean"/>
629
+ <Property Name="ExistDiskStorageClassificationValue" Type="Edm.Guid"/>
630
+ <Property Name="ExistingDiskChannelInitial" Type="Edm.Int32"/>
631
+ <Property Name="ExistingDiskChannelMaximum" Type="Edm.Int32"/>
632
+ <Property Name="ExistingDiskChannelMinimum" Type="Edm.Int32"/>
633
+ <Property Name="ExpectedCPUUtilizationInitial" Type="Edm.Int64"/>
634
+ <Property Name="ExpectedCPUUtilizationMaximum" Type="Edm.Int64"/>
635
+ <Property Name="ExpectedCPUUtilizationMinimum" Type="Edm.Int64"/>
636
+ <Property Name="FabricCapabilityType" Type="Edm.String"/>
637
+ <Property Name="FixedVirtualHardDiskValue" Type="Edm.Boolean"/>
638
+ <Property Name="FixedVirtualHardDiskValueCanChange" Type="Edm.Boolean"/>
639
+ <Property Name="FloppyImageFileInitial" Type="Edm.Guid"/>
640
+ <Property Name="LogicalNetworkValue" Type="Edm.Guid"/>
641
+ <Property Name="MaximumHorizontalMonitorResolutionInitial" Type="Edm.Int32"/>
642
+ <Property Name="MaximumHorizontalMonitorResolutionMaximum" Type="Edm.Int32"/>
643
+ <Property Name="MaximumHorizontalMonitorResolutionMinimum" Type="Edm.Int32"/>
644
+ <Property Name="MaximumMemoryMBInitial" Type="Edm.Int32"/>
645
+ <Property Name="MaximumMemoryMBMaximum" Type="Edm.Int32"/>
646
+ <Property Name="MaximumMemoryMBMinimum" Type="Edm.Int32"/>
647
+ <Property Name="MaximumMonitorCountInitial" Type="Edm.Int32"/>
648
+ <Property Name="MaximumMonitorCountMaximum" Type="Edm.Int32"/>
649
+ <Property Name="MaximumMonitorCountMinimum" Type="Edm.Int32"/>
650
+ <Property Name="MaximumVerticalMonitorResolutionInitial" Type="Edm.Int32"/>
651
+ <Property Name="MaximumVerticalMonitorResolutionMaximum" Type="Edm.Int32"/>
652
+ <Property Name="MaximumVerticalMonitorResolutionMinimum" Type="Edm.Int32"/>
653
+ <Property Name="MemoryAmountInitial" Type="Edm.Int32"/>
654
+ <Property Name="MemoryAmountMaximum" Type="Edm.Int32"/>
655
+ <Property Name="MemoryAmountMinimum" Type="Edm.Int32"/>
656
+ <Property Name="MemoryMBInitial" Type="Edm.Int32"/>
657
+ <Property Name="MemoryMBMaximum" Type="Edm.Int32"/>
658
+ <Property Name="MemoryMBMinimum" Type="Edm.Int32"/>
659
+ <Property Name="MemoryPriorityCustomInitial" Type="Edm.Int32"/>
660
+ <Property Name="MemoryPriorityCustomMaximum" Type="Edm.Int32"/>
661
+ <Property Name="MemoryPriorityCustomMinimum" Type="Edm.Int32"/>
662
+ <Property Name="MemoryPriorityHighInitial" Type="Edm.Int32"/>
663
+ <Property Name="MemoryPriorityHighMaximum" Type="Edm.Int32"/>
664
+ <Property Name="MemoryPriorityHighMinimum" Type="Edm.Int32"/>
665
+ <Property Name="MemoryPriorityLowInitial" Type="Edm.Int32"/>
666
+ <Property Name="MemoryPriorityLowMaximum" Type="Edm.Int32"/>
667
+ <Property Name="MemoryPriorityLowMinimum" Type="Edm.Int32"/>
668
+ <Property Name="MemoryPriorityNormalInitial" Type="Edm.Int32"/>
669
+ <Property Name="MemoryPriorityNormalMaximum" Type="Edm.Int32"/>
670
+ <Property Name="MemoryPriorityNormalMinimum" Type="Edm.Int32"/>
671
+ <Property Name="NetworkAdapterNameInitial" Type="Edm.String"/>
672
+ <Property Name="NetworkOptimizationValue" Type="Edm.Boolean"/>
673
+ <Property Name="NetworkOptimizationValueCanChange" Type="Edm.Boolean"/>
674
+ <Property Name="NewDiskDriveChannelInitial" Type="Edm.Int32"/>
675
+ <Property Name="NewDiskDriveChannelMaximum" Type="Edm.Int32"/>
676
+ <Property Name="NewDiskDriveChannelMinimum" Type="Edm.Int32"/>
677
+ <Property Name="NewDiskFileNameInitial" Type="Edm.String"/>
678
+ <Property Name="NewDiskImageFileInitial" Type="Edm.Guid"/>
679
+ <Property Name="NewDiskStorageClassificationValue" Type="Edm.Guid"/>
680
+ <Property Name="OSCompatibilityModeValue" Type="Edm.Boolean"/>
681
+ <Property Name="OSCompatibilityModeValueCanChange" Type="Edm.Boolean"/>
682
+ <Property Name="ReadOnly" Type="Edm.Boolean"/>
683
+ <Property Name="SCSIAdapterCountInitial" Type="Edm.Int32"/>
684
+ <Property Name="SCSIAdapterCountMaximum" Type="Edm.Int32"/>
685
+ <Property Name="SCSIAdapterCountMinimum" Type="Edm.Int32"/>
686
+ <Property Name="SharedDVDImageFileValue" Type="Edm.Boolean"/>
687
+ <Property Name="SharedDVDImageFileValueCanChange" Type="Edm.Boolean"/>
688
+ <Property Name="StartActionAlwaysStartCanChange" Type="Edm.Boolean"/>
689
+ <Property Name="StartActionAlwaysStartInitial" Type="Edm.Boolean"/>
690
+ <Property Name="StartActionAutomaticallyStartIfRunningCanChange" Type="Edm.Boolean"/>
691
+ <Property Name="StartActionAutomaticallyStartIfRunningInitial" Type="Edm.Boolean"/>
692
+ <Property Name="StartActionDoNothingCanChange" Type="Edm.Boolean"/>
693
+ <Property Name="StartActionDoNothingInitial" Type="Edm.Boolean"/>
694
+ <Property Name="StartupDelaySecondsInitial" Type="Edm.Int64"/>
695
+ <Property Name="StartupDelaySecondsMaximum" Type="Edm.Int64"/>
696
+ <Property Name="StartupDelaySecondsMinimum" Type="Edm.Int64"/>
697
+ <Property Name="StartupMemoryMBInitial" Type="Edm.Int32"/>
698
+ <Property Name="StartupMemoryMBMaximum" Type="Edm.Int32"/>
699
+ <Property Name="StartupMemoryMBMinimum" Type="Edm.Int32"/>
700
+ <Property Name="StaticMACAddressInitial" Type="Edm.String"/>
701
+ <Property Name="StaticMemoryCanChange" Type="Edm.Boolean"/>
702
+ <Property Name="StaticMemoryInitial" Type="Edm.Boolean"/>
703
+ <Property Name="StopActionDoNothingCanChange" Type="Edm.Boolean"/>
704
+ <Property Name="StopActionDoNothingInitial" Type="Edm.Boolean"/>
705
+ <Property Name="StopActionSaveStateVMCanChange" Type="Edm.Boolean"/>
706
+ <Property Name="StopActionSaveStateVMInitial" Type="Edm.Boolean"/>
707
+ <Property Name="StopActionShutdownVMCanChange" Type="Edm.Boolean"/>
708
+ <Property Name="StopActionShutdownVMInitial" Type="Edm.Boolean"/>
709
+ <Property Name="StopActionTurnOffVMCanChange" Type="Edm.Boolean"/>
710
+ <Property Name="StopActionTurnOffVMInitial" Type="Edm.Boolean"/>
711
+ <Property Name="TargetMemoryBufferPercentInitial" Type="Edm.Int32"/>
712
+ <Property Name="TargetMemoryBufferPercentMaximum" Type="Edm.Int32"/>
713
+ <Property Name="TargetMemoryBufferPercentMinimum" Type="Edm.Int32"/>
714
+ <Property Name="UseBusLogicParallelSCSICanChange" Type="Edm.Boolean"/>
715
+ <Property Name="UseBusLogicParallelSCSIInitial" Type="Edm.Boolean"/>
716
+ <Property Name="UseCOM1CanChange" Type="Edm.Boolean"/>
717
+ <Property Name="UseCOM1Initial" Type="Edm.Boolean"/>
718
+ <Property Name="UseCOM1NamedPipeCanChange" Type="Edm.Boolean"/>
719
+ <Property Name="UseCOM1NamedPipeInitial" Type="Edm.Boolean"/>
720
+ <Property Name="UseCOM1TextFileCanChange" Type="Edm.Boolean"/>
721
+ <Property Name="UseCOM1TextFileInitial" Type="Edm.Boolean"/>
722
+ <Property Name="UseCOM2CanChange" Type="Edm.Boolean"/>
723
+ <Property Name="UseCOM2Initial" Type="Edm.Boolean"/>
724
+ <Property Name="UseCOM2NamedPipeCanChange" Type="Edm.Boolean"/>
725
+ <Property Name="UseCOM2NamedPipeInitial" Type="Edm.Boolean"/>
726
+ <Property Name="UseCOM2TextFileCanChange" Type="Edm.Boolean"/>
727
+ <Property Name="UseCOM2TextFileInitial" Type="Edm.Boolean"/>
728
+ <Property Name="UseDynamicIPv4CanChange" Type="Edm.Boolean"/>
729
+ <Property Name="UseDynamicIPv4Initial" Type="Edm.Boolean"/>
730
+ <Property Name="UseDynamicIPv6CanChange" Type="Edm.Boolean"/>
731
+ <Property Name="UseDynamicIPv6Initial" Type="Edm.Boolean"/>
732
+ <Property Name="UseEmulatedNetworkAdapterCanChange" Type="Edm.Boolean"/>
733
+ <Property Name="UseEmulatedNetworkAdapterInitial" Type="Edm.Boolean"/>
734
+ <Property Name="UseExistingDiskForOperatingSystemCanChange" Type="Edm.Boolean"/>
735
+ <Property Name="UseExistingDiskForOperatingSystemInitial" Type="Edm.Boolean"/>
736
+ <Property Name="UseExistingDiskImageFileCanChange" Type="Edm.Boolean"/>
737
+ <Property Name="UseExistingDiskImageFileInitial" Type="Edm.Boolean"/>
738
+ <Property Name="UseExistingDVDImageFileCanChange" Type="Edm.Boolean"/>
739
+ <Property Name="UseExistingDVDImageFileInitial" Type="Edm.Boolean"/>
740
+ <Property Name="UseExistingFloppyDriveCanChange" Type="Edm.Boolean"/>
741
+ <Property Name="UseExistingFloppyDriveInitial" Type="Edm.Boolean"/>
742
+ <Property Name="UseExistingFloppyImageFileCanChange" Type="Edm.Boolean"/>
743
+ <Property Name="UseExistingFloppyImageFileInitial" Type="Edm.Boolean"/>
744
+ <Property Name="UseExistingOrFirstAvailableDiskDriveChannelCanChange" Type="Edm.Boolean"/>
745
+ <Property Name="UseExistingOrFirstAvailableDiskDriveChannelInitial" Type="Edm.Boolean"/>
746
+ <Property Name="UseExistingOrFirstAvailableDVDDriveChannelCanChange" Type="Edm.Boolean"/>
747
+ <Property Name="UseExistingOrFirstAvailableDVDDriveChannelInitial" Type="Edm.Boolean"/>
748
+ <Property Name="UseFirstAvailableChannelForNewDiskCanChange" Type="Edm.Boolean"/>
749
+ <Property Name="UseFirstAvailableChannelForNewDiskInitial" Type="Edm.Boolean"/>
750
+ <Property Name="UseForOperatingSystemCanChange" Type="Edm.Boolean"/>
751
+ <Property Name="UseForOperatingSystemInitial" Type="Edm.Boolean"/>
752
+ <Property Name="UseLSILogicParallelSCSICanChange" Type="Edm.Boolean"/>
753
+ <Property Name="UseLSILogicParallelSCSIInitial" Type="Edm.Boolean"/>
754
+ <Property Name="UseLSILogicSASSCSICanChange" Type="Edm.Boolean"/>
755
+ <Property Name="UseLSILogicSASSCSIInitial" Type="Edm.Boolean"/>
756
+ <Property Name="UseMACSpoofingCanChange" Type="Edm.Boolean"/>
757
+ <Property Name="UseMACSpoofingInitial" Type="Edm.Boolean"/>
758
+ <Property Name="UseNoMediaDVDDriveCanChange" Type="Edm.Boolean"/>
759
+ <Property Name="UseNoMediaDVDDriveInitial" Type="Edm.Boolean"/>
760
+ <Property Name="UseNoMediaFloppyDriveCanChange" Type="Edm.Boolean"/>
761
+ <Property Name="UseNoMediaFloppyDriveInitial" Type="Edm.Boolean"/>
762
+ <Property Name="UsePassthroughDiskCanChange" Type="Edm.Boolean"/>
763
+ <Property Name="UsePassthroughDiskInitial" Type="Edm.Boolean"/>
764
+ <Property Name="UsePhysicalDVDDriveCanChange" Type="Edm.Boolean"/>
765
+ <Property Name="UsePhysicalDVDDriveInitial" Type="Edm.Boolean"/>
766
+ <Property Name="UseStaticIPv4CanChange" Type="Edm.Boolean"/>
767
+ <Property Name="UseStaticIPv4Initial" Type="Edm.Boolean"/>
768
+ <Property Name="UseStaticIPv6CanChange" Type="Edm.Boolean"/>
769
+ <Property Name="UseStaticIPv6Initial" Type="Edm.Boolean"/>
770
+ <Property Name="UseStaticMACAddressCanChange" Type="Edm.Boolean"/>
771
+ <Property Name="UseStaticMACAddressInitial" Type="Edm.Boolean"/>
772
+ <Property Name="UseSyntheticNetworkAdapterCanChange" Type="Edm.Boolean"/>
773
+ <Property Name="UseSyntheticNetworkAdapterInitial" Type="Edm.Boolean"/>
774
+ <Property Name="UseVMWareParavirtualSCSICanChange" Type="Edm.Boolean"/>
775
+ <Property Name="UseVMWareParavirtualSCSIInitial" Type="Edm.Boolean"/>
776
+ <Property Name="VirtualDVDDriveCountInitial" Type="Edm.Int32"/>
777
+ <Property Name="VirtualDVDDriveCountMaximum" Type="Edm.Int32"/>
778
+ <Property Name="VirtualDVDDriveCountMinimum" Type="Edm.Int32"/>
779
+ <Property Name="VirtualHardDiskCountInitial" Type="Edm.Int32"/>
780
+ <Property Name="VirtualHardDiskCountMaximum" Type="Edm.Int32"/>
781
+ <Property Name="VirtualHardDiskCountMinimum" Type="Edm.Int32"/>
782
+ <Property Name="VirtualHardDiskSizeMBInitial" Type="Edm.Int64"/>
783
+ <Property Name="VirtualHardDiskSizeMBMaximum" Type="Edm.Int64"/>
784
+ <Property Name="VirtualHardDiskSizeMBMinimum" Type="Edm.Int64"/>
785
+ <Property Name="VirtualNetworkAdapterCountInitial" Type="Edm.Int32"/>
786
+ <Property Name="VirtualNetworkAdapterCountMaximum" Type="Edm.Int32"/>
787
+ <Property Name="VirtualNetworkAdapterCountMinimum" Type="Edm.Int32"/>
788
+ <Property Name="VMHighlyAvailableValue" Type="Edm.Boolean"/>
789
+ <Property Name="VMHighlyAvailableValueCanChange" Type="Edm.Boolean"/>
790
+ </EntityType>
791
+ <EntityType Name="CloudCapacity">
792
+ <Key>
793
+ <PropertyRef Name="StampId"/>
794
+ <PropertyRef Name="CloudId"/>
795
+ </Key>
796
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
797
+ <Property Name="CloudId" Type="Edm.Guid" Nullable="false"/>
798
+ <Property Name="CPUCount" Type="Edm.Int64"/>
799
+ <Property Name="UseCPUCountMaximum" Type="Edm.Boolean"/>
800
+ <Property Name="CustomQuotaCount" Type="Edm.Int64"/>
801
+ <Property Name="UseCustomQuotaCountMaximum" Type="Edm.Boolean"/>
802
+ <Property Name="MemoryMB" Type="Edm.Int64"/>
803
+ <Property Name="UseMemoryMBMaximum" Type="Edm.Boolean"/>
804
+ <Property Name="StorageGB" Type="Edm.Int64"/>
805
+ <Property Name="UseStorageGBMaximum" Type="Edm.Boolean"/>
806
+ <Property Name="VMCount" Type="Edm.Int64"/>
807
+ <Property Name="UseVMCountMaximum" Type="Edm.Boolean"/>
808
+ </EntityType>
809
+ <EntityType Name="QuotaAndUsageComponent">
810
+ <Key>
811
+ <PropertyRef Name="StampId"/>
812
+ <PropertyRef Name="ID"/>
813
+ <PropertyRef Name="QuotaDimension"/>
814
+ </Key>
815
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
816
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
817
+ <Property Name="UserRoleID" Type="Edm.Guid"/>
818
+ <Property Name="QuotaDimension" Type="Edm.String" Nullable="false"/>
819
+ <Property Name="UserRoleQuota" Type="Edm.Int32"/>
820
+ <Property Name="UserRoleUsage" Type="Edm.Int32" Nullable="false"/>
821
+ <Property Name="UserQuota" Type="Edm.Int32"/>
822
+ <Property Name="UserUsage" Type="Edm.Int32" Nullable="false"/>
823
+ </EntityType>
824
+ <EntityType Name="VirtualDiskDrive">
825
+ <Key>
826
+ <PropertyRef Name="StampId"/>
827
+ <PropertyRef Name="ID"/>
828
+ </Key>
829
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
830
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
831
+ <Property Name="Bus" Type="Edm.Byte"/>
832
+ <Property Name="BusType" Type="Edm.String"/>
833
+ <Property Name="IsVHD" Type="Edm.Boolean"/>
834
+ <Property Name="LUN" Type="Edm.Byte"/>
835
+ <Property Name="Name" Type="Edm.String"/>
836
+ <Property Name="VMId" Type="Edm.Guid"/>
837
+ <Property Name="TemplateId" Type="Edm.Guid"/>
838
+ <Property Name="ISOId" Type="Edm.Guid"/>
839
+ <Property Name="HostDrive" Type="Edm.String"/>
840
+ <Property Name="ISOLinked" Type="Edm.Boolean"/>
841
+ <Property Name="Accessibility" Type="Edm.String"/>
842
+ <Property Name="Description" Type="Edm.String"/>
843
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
844
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
845
+ <Property Name="Enabled" Type="Edm.Boolean"/>
846
+ <Property Name="VirtualHardDiskId" Type="Edm.Guid"/>
847
+ <Property Name="VolumeType" Type="Edm.String"/>
848
+ <Property Name="IDE" Type="Edm.Boolean"/>
849
+ <Property Name="SCSI" Type="Edm.Boolean"/>
850
+ <Property Name="FileName" Type="Edm.String"/>
851
+ <Property Name="Path" Type="Edm.String"/>
852
+ <Property Name="Size" Type="Edm.Int64"/>
853
+ <NavigationProperty Name="VirtualHardDisk" Relationship="VMM.VirtualDiskDrive_VirtualHardDisk" ToRole="VirtualHardDisk" FromRole="VirtualDiskDrive"/>
854
+ </EntityType>
855
+ <EntityType Name="VMCheckPoint">
856
+ <Key>
857
+ <PropertyRef Name="ID"/>
858
+ <PropertyRef Name="StampId"/>
859
+ </Key>
860
+ <Property Name="Accessibility" Type="Edm.String"/>
861
+ <Property Name="CheckpointID" Type="Edm.Guid"/>
862
+ <Property Name="Description" Type="Edm.String"/>
863
+ <Property Name="Enabled" Type="Edm.Boolean"/>
864
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
865
+ <Property Name="Name" Type="Edm.String"/>
866
+ <Property Name="ParentCheckpointID" Type="Edm.Guid"/>
867
+ <Property Name="VMId" Type="Edm.Guid"/>
868
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
869
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
870
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
871
+ <Property Name="VMCheckPointAction" Type="Edm.String"/>
872
+ <Property Name="Confirm" Type="Edm.Boolean"/>
873
+ <Property Name="RunAsynchronously" Type="Edm.Boolean"/>
874
+ <NavigationProperty Name="ParentCheckPoint" Relationship="VMM.VMCheckPoint_ParentCheckPoint" ToRole="ParentCheckPoint" FromRole="VMCheckPoint"/>
875
+ </EntityType>
876
+ <EntityType Name="LogicalNetwork">
877
+ <Key>
878
+ <PropertyRef Name="ID"/>
879
+ <PropertyRef Name="StampId"/>
880
+ </Key>
881
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
882
+ <Property Name="Description" Type="Edm.String"/>
883
+ <Property Name="Name" Type="Edm.String"/>
884
+ <Property Name="NetworkVirtualizationEnabled" Type="Edm.Boolean"/>
885
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
886
+ <Property Name="CloudId" Type="Edm.Guid"/>
887
+ </EntityType>
888
+ <EntityType Name="ServiceTemplate">
889
+ <Key>
890
+ <PropertyRef Name="ID"/>
891
+ <PropertyRef Name="StampId"/>
892
+ </Key>
893
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
894
+ <Property Name="Description" Type="Edm.String"/>
895
+ <Property Name="Name" Type="Edm.String"/>
896
+ <Property Name="Namespace" Type="Edm.String"/>
897
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
898
+ <Property Name="Release" Type="Edm.String"/>
899
+ <Property Name="ServicePriority" Type="Edm.String"/>
900
+ <Property Name="ServiceTemplateState" Type="Edm.String"/>
901
+ <Property Name="IsPublished" Type="Edm.Boolean"/>
902
+ <Property Name="PublishedTime" Type="Edm.DateTime"/>
903
+ <Property Name="Owner" Type="VMM.UserAndRole"/>
904
+ <Property Name="GrantedToList" Type="Collection(VMM.UserAndRole)" Nullable="false"/>
905
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
906
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
907
+ <Property Name="Enabled" Type="Edm.Boolean"/>
908
+ <Property Name="NotificationsAvailable" Type="Edm.Boolean"/>
909
+ <Property Name="UseAsDefaultRelease" Type="Edm.Boolean"/>
910
+ <Property Name="UseAsPattern" Type="Edm.Boolean"/>
911
+ <Property Name="Accessibility" Type="Edm.String"/>
912
+ <Property Name="ServiceSettings" Type="Collection(VMM.ServiceSetting)" Nullable="false"/>
913
+ <Property Name="CustomProperty" Type="Collection(VMM.CustomProperty)" Nullable="false"/>
914
+ <NavigationProperty Name="ComputerTierTemplates" Relationship="VMM.ServiceTemplate_ComputerTierTemplates" ToRole="ComputerTierTemplates" FromRole="ServiceTemplate"/>
915
+ <NavigationProperty Name="ApplicationHostTemplates" Relationship="VMM.ServiceTemplate_ApplicationHostTemplates" ToRole="ApplicationHostTemplates" FromRole="ServiceTemplate"/>
916
+ </EntityType>
917
+ <ComplexType Name="ServiceSetting">
918
+ <Property Name="Name" Type="Edm.String"/>
919
+ <Property Name="Description" Type="Edm.String"/>
920
+ <Property Name="Value" Type="Edm.String"/>
921
+ <Property Name="Mandatory" Type="Edm.Boolean"/>
922
+ <Property Name="HasEncryptedValue" Type="Edm.Boolean"/>
923
+ <Property Name="IsSecure" Type="Edm.Boolean"/>
924
+ <Property Name="GlobalSettingType" Type="Edm.String"/>
925
+ </ComplexType>
926
+ <ComplexType Name="CustomProperty">
927
+ <Property Name="Name" Type="Edm.String"/>
928
+ <Property Name="Value" Type="Edm.String"/>
929
+ </ComplexType>
930
+ <EntityType Name="Service">
931
+ <Key>
932
+ <PropertyRef Name="ID"/>
933
+ <PropertyRef Name="StampId"/>
934
+ </Key>
935
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
936
+ <Property Name="Description" Type="Edm.String"/>
937
+ <Property Name="Name" Type="Edm.String"/>
938
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
939
+ <Property Name="NewServiceDeployment" Type="VMM.NewServiceDeployment"/>
940
+ <Property Name="Owner" Type="VMM.UserAndRole"/>
941
+ <Property Name="GrantedToList" Type="Collection(VMM.UserAndRole)" Nullable="false"/>
942
+ <Property Name="AllVMsAccessible" Type="Edm.Boolean"/>
943
+ <Property Name="CostCenter" Type="Edm.String"/>
944
+ <Property Name="DeploymentState" Type="Edm.String"/>
945
+ <Property Name="DeployedTo" Type="Edm.String"/>
946
+ <Property Name="InServicingMode" Type="Edm.Boolean"/>
947
+ <Property Name="OverallStatus" Type="Edm.String"/>
948
+ <Property Name="PendingServiceTemplatePresent" Type="Edm.Boolean"/>
949
+ <Property Name="PendingServiceTemplateRelease" Type="Edm.String"/>
950
+ <Property Name="ServicePriority" Type="Edm.String"/>
951
+ <Property Name="ServiceTemplateRelease" Type="Edm.String"/>
952
+ <Property Name="ServiceStatus" Type="Edm.String"/>
953
+ <Property Name="VMHostGroup" Type="Edm.String"/>
954
+ <Property Name="Enabled" Type="Edm.Boolean"/>
955
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
956
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
957
+ <Property Name="NotificationsAvailable" Type="Edm.Boolean"/>
958
+ <Property Name="Accessibility" Type="Edm.String"/>
959
+ <Property Name="Operation" Type="Edm.String"/>
960
+ <Property Name="IgnorePlacementErrors" Type="Edm.Boolean"/>
961
+ <Property Name="FailedJobID" Type="Edm.Guid"/>
962
+ <Property Name="CloudId" Type="Edm.Guid"/>
963
+ <Property Name="ServiceTemplateId" Type="Edm.Guid"/>
964
+ <Property Name="CustomProperty" Type="Collection(VMM.CustomProperty)" Nullable="false"/>
965
+ <Property Name="PendingServiceSettings" Type="Collection(VMM.ServiceSetting)" Nullable="false"/>
966
+ <Property Name="ServiceSettings" Type="Collection(VMM.ServiceSetting)" Nullable="false"/>
967
+ <Property Name="ServicingWindow" Type="VMM.ServicingWindow"/>
968
+ <NavigationProperty Name="FailedJob" Relationship="VMM.Service_FailedJob" ToRole="FailedJob" FromRole="Service"/>
969
+ <NavigationProperty Name="PendingServiceTemplate" Relationship="VMM.Service_PendingServiceTemplate" ToRole="PendingServiceTemplate" FromRole="Service"/>
970
+ <NavigationProperty Name="ServiceTemplate" Relationship="VMM.Service_ServiceTemplate" ToRole="ServiceTemplate" FromRole="Service"/>
971
+ <NavigationProperty Name="Cloud" Relationship="VMM.Service_Cloud" ToRole="Cloud" FromRole="Service"/>
972
+ <NavigationProperty Name="ComputerTiers" Relationship="VMM.Service_ComputerTiers" ToRole="ComputerTiers" FromRole="Service"/>
973
+ <NavigationProperty Name="MostRecentTask" Relationship="VMM.Service_MostRecentTask" ToRole="MostRecentTask" FromRole="Service"/>
974
+ <NavigationProperty Name="ApplicationHosts" Relationship="VMM.Service_ApplicationHosts" ToRole="ApplicationHosts" FromRole="Service"/>
975
+ </EntityType>
976
+ <ComplexType Name="NewServiceDeployment">
977
+ <Property Name="ServiceConfiguration" Type="VMM.ServiceDeploymentConfiguration"/>
978
+ <Property Name="TierConfigurations" Type="Collection(VMM.ServiceTierAndVMConfiguration)" Nullable="false"/>
979
+ </ComplexType>
980
+ <ComplexType Name="ServiceDeploymentConfiguration">
981
+ <Property Name="ServiceSettings" Type="Collection(VMM.ServiceSettingsInput)" Nullable="false"/>
982
+ <Property Name="Name" Type="Edm.String"/>
983
+ <Property Name="Description" Type="Edm.String"/>
984
+ <Property Name="CostCenter" Type="Edm.String"/>
985
+ <Property Name="Tag" Type="Edm.String"/>
986
+ <Property Name="Priority" Type="Edm.String"/>
987
+ </ComplexType>
988
+ <ComplexType Name="ServiceSettingsInput">
989
+ <Property Name="Name" Type="Edm.String"/>
990
+ <Property Name="Value" Type="Edm.String"/>
991
+ <Property Name="Description" Type="Edm.String"/>
992
+ <Property Name="IsRequired" Type="Edm.Boolean"/>
993
+ <Property Name="IsEncrypted" Type="Edm.Boolean"/>
994
+ </ComplexType>
995
+ <ComplexType Name="ServiceTierAndVMConfiguration">
996
+ <Property Name="Name" Type="Edm.String"/>
997
+ <Property Name="VMConfigurations" Type="Collection(VMM.VMConfiguration)" Nullable="false"/>
998
+ </ComplexType>
999
+ <ComplexType Name="VMConfiguration">
1000
+ <Property Name="VMName" Type="Edm.String"/>
1001
+ <Property Name="ComputerName" Type="Edm.String"/>
1002
+ <Property Name="Description" Type="Edm.String"/>
1003
+ <Property Name="CostCenter" Type="Edm.String"/>
1004
+ <Property Name="Tag" Type="Edm.String"/>
1005
+ </ComplexType>
1006
+ <ComplexType Name="ServicingWindow">
1007
+ <Property Name="Category" Type="Edm.String"/>
1008
+ <Property Name="Name" Type="Edm.String"/>
1009
+ <Property Name="Description" Type="Edm.String"/>
1010
+ <Property Name="Owner" Type="Edm.String"/>
1011
+ <Property Name="TimeZone" Type="Edm.Int32"/>
1012
+ <Property Name="StartDate" Type="Edm.DateTime"/>
1013
+ <Property Name="StartTimeOfDay" Type="Edm.String"/>
1014
+ <Property Name="WeeklyScheduleDayOfWeek" Type="Edm.String"/>
1015
+ <Property Name="MonthlyScheduleDayOfWeek" Type="Edm.String"/>
1016
+ <Property Name="DayOfMonth" Type="Edm.String"/>
1017
+ <Property Name="WeekOfMonth" Type="Edm.String"/>
1018
+ <Property Name="DaysToRecur" Type="Edm.Int32"/>
1019
+ <Property Name="MonthsToRecur" Type="Edm.Int32"/>
1020
+ <Property Name="WeeksToRecur" Type="Edm.Int32"/>
1021
+ <Property Name="MinutesDuration" Type="Edm.Int32"/>
1022
+ <Property Name="ScheduleType" Type="Edm.String"/>
1023
+ </ComplexType>
1024
+ <EntityType Name="ComputerTier">
1025
+ <Key>
1026
+ <PropertyRef Name="ID"/>
1027
+ <PropertyRef Name="StampId"/>
1028
+ </Key>
1029
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
1030
+ <Property Name="Description" Type="Edm.String"/>
1031
+ <Property Name="Name" Type="Edm.String"/>
1032
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
1033
+ <Property Name="AllVMsAccessible" Type="Edm.Boolean"/>
1034
+ <Property Name="ComputerTierStatus" Type="Edm.String"/>
1035
+ <Property Name="InstanceMaximumCount" Type="Edm.Int32"/>
1036
+ <Property Name="InstanceMinimumCount" Type="Edm.Int32"/>
1037
+ <Property Name="OverallStatus" Type="Edm.String"/>
1038
+ <Property Name="ServicingType" Type="Edm.String"/>
1039
+ <Property Name="DeploymentState" Type="Edm.String"/>
1040
+ <Property Name="Enabled" Type="Edm.Boolean"/>
1041
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
1042
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
1043
+ <Property Name="Accessibility" Type="Edm.String"/>
1044
+ <Property Name="ServiceId" Type="Edm.Guid"/>
1045
+ <Property Name="FailedJobID" Type="Edm.Guid"/>
1046
+ <Property Name="TierTemplateId" Type="Edm.Guid"/>
1047
+ <Property Name="CustomProperty" Type="Collection(VMM.CustomProperty)" Nullable="false"/>
1048
+ <NavigationProperty Name="ComputerTierTemplate" Relationship="VMM.ComputerTier_ComputerTierTemplate" ToRole="ComputerTierTemplate" FromRole="ComputerTier"/>
1049
+ <NavigationProperty Name="VMs" Relationship="VMM.ComputerTier_VMs" ToRole="VMs" FromRole="ComputerTier"/>
1050
+ <NavigationProperty Name="MostRecentTask" Relationship="VMM.ComputerTier_MostRecentTask" ToRole="MostRecentTask" FromRole="ComputerTier"/>
1051
+ </EntityType>
1052
+ <EntityType Name="ComputerTierTemplate">
1053
+ <Key>
1054
+ <PropertyRef Name="ID"/>
1055
+ <PropertyRef Name="StampId"/>
1056
+ </Key>
1057
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
1058
+ <Property Name="Description" Type="Edm.String"/>
1059
+ <Property Name="Name" Type="Edm.String"/>
1060
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
1061
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
1062
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
1063
+ <Property Name="BlockAutomaticMigration" Type="Edm.Boolean"/>
1064
+ <Property Name="DefaultInstanceCount" Type="Edm.Int32"/>
1065
+ <Property Name="DeploymentOrder" Type="Edm.Int32"/>
1066
+ <Property Name="InstanceMaximumCount" Type="Edm.Int32"/>
1067
+ <Property Name="InstanceMinimumCount" Type="Edm.Int32"/>
1068
+ <Property Name="NumberOfUpgradeDomains" Type="Edm.Int32"/>
1069
+ <Property Name="ServicingOrder" Type="Edm.Int32"/>
1070
+ <Property Name="Tag" Type="Edm.String"/>
1071
+ <Property Name="Enabled" Type="Edm.Boolean"/>
1072
+ <Property Name="Accessibility" Type="Edm.String"/>
1073
+ <Property Name="ServiceTemplateId" Type="Edm.Guid"/>
1074
+ <NavigationProperty Name="VMTemplate" Relationship="VMM.ComputerTierTemplate_VMTemplate" ToRole="VMTemplate" FromRole="ComputerTierTemplate"/>
1075
+ </EntityType>
1076
+ <EntityType Name="ApplicationHost">
1077
+ <Key>
1078
+ <PropertyRef Name="ID"/>
1079
+ <PropertyRef Name="StampId"/>
1080
+ </Key>
1081
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
1082
+ <Property Name="Description" Type="Edm.String"/>
1083
+ <Property Name="Name" Type="Edm.String"/>
1084
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
1085
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
1086
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
1087
+ <Property Name="Owner" Type="Edm.String"/>
1088
+ <Property Name="ComputerName" Type="Edm.String"/>
1089
+ <Property Name="DeploymentState" Type="Edm.String"/>
1090
+ <Property Name="ServiceId" Type="Edm.Guid"/>
1091
+ <Property Name="FailedJobID" Type="Edm.Guid"/>
1092
+ <NavigationProperty Name="ApplicationHostTemplate" Relationship="VMM.ApplicationHost_ApplicationHostTemplate" ToRole="ApplicationHostTemplate" FromRole="ApplicationHost"/>
1093
+ </EntityType>
1094
+ <EntityType Name="ApplicationHostTemplate">
1095
+ <Key>
1096
+ <PropertyRef Name="ID"/>
1097
+ <PropertyRef Name="StampId"/>
1098
+ </Key>
1099
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
1100
+ <Property Name="Description" Type="Edm.String"/>
1101
+ <Property Name="Name" Type="Edm.String"/>
1102
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
1103
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
1104
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
1105
+ <Property Name="DeploymentOrder" Type="Edm.Int32"/>
1106
+ <Property Name="ComputerName" Type="Edm.String"/>
1107
+ <Property Name="ServicingOrder" Type="Edm.Int32"/>
1108
+ <Property Name="Tag" Type="Edm.String"/>
1109
+ <Property Name="ServiceTemplateId" Type="Edm.Guid"/>
1110
+ <Property Name="FailedJobID" Type="Edm.Guid"/>
1111
+ </EntityType>
1112
+ <EntityType Name="LibraryShare">
1113
+ <Key>
1114
+ <PropertyRef Name="ID"/>
1115
+ <PropertyRef Name="StampId"/>
1116
+ </Key>
1117
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
1118
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
1119
+ <Property Name="Description" Type="Edm.String"/>
1120
+ <Property Name="Name" Type="Edm.String"/>
1121
+ <Property Name="Path" Type="Edm.String"/>
1122
+ </EntityType>
1123
+ <EntityType Name="VMNetwork">
1124
+ <Key>
1125
+ <PropertyRef Name="StampId"/>
1126
+ <PropertyRef Name="ID"/>
1127
+ </Key>
1128
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
1129
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
1130
+ <Property Name="Name" Type="Edm.String"/>
1131
+ <Property Name="ExternalName" Type="Edm.String"/>
1132
+ <Property Name="Description" Type="Edm.String"/>
1133
+ <Property Name="IsolationType" Type="Edm.String"/>
1134
+ <Property Name="PAIPAddressPoolType" Type="Edm.String"/>
1135
+ <Property Name="CAIPAddressPoolType" Type="Edm.String"/>
1136
+ <Property Name="Owner" Type="VMM.UserAndRole"/>
1137
+ <Property Name="GrantedToList" Type="Collection(VMM.UserAndRole)" Nullable="false"/>
1138
+ <Property Name="LogicalNetworkId" Type="Edm.Guid"/>
1139
+ <Property Name="LogicalNetworkName" Type="Edm.String"/>
1140
+ <Property Name="AutoCreateSubnet" Type="Edm.Boolean"/>
1141
+ <Property Name="IsAssigned" Type="Edm.Boolean"/>
1142
+ <Property Name="Enabled" Type="Edm.Boolean"/>
1143
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
1144
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
1145
+ <Property Name="PROTipID" Type="Edm.Guid"/>
1146
+ <Property Name="RoutingDomainId" Type="Edm.Guid"/>
1147
+ <Property Name="MostRecentTaskId" Type="Edm.Guid"/>
1148
+ <Property Name="VPNGateway" Type="VMM.VPNVMNetworkGateway"/>
1149
+ </EntityType>
1150
+ <ComplexType Name="VPNVMNetworkGateway">
1151
+ <Property Name="TargetVPNIPv4Address" Type="Edm.String"/>
1152
+ <Property Name="TargetVPNIPv6Address" Type="Edm.String"/>
1153
+ <Property Name="AuthenticationMethod" Type="Edm.String"/>
1154
+ <Property Name="RunAsAccountID" Type="Edm.Guid"/>
1155
+ <Property Name="AutoSelectCertificate" Type="Edm.Boolean"/>
1156
+ <Property Name="CertificateFilePath" Type="Edm.String"/>
1157
+ </ComplexType>
1158
+ <EntityType Name="StaticIPAddressPool">
1159
+ <Key>
1160
+ <PropertyRef Name="StampId"/>
1161
+ <PropertyRef Name="ID"/>
1162
+ </Key>
1163
+ <Property Name="EnableNetBIOS" Type="Edm.Boolean"/>
1164
+ <Property Name="IsFullyCached" Type="Edm.Boolean"/>
1165
+ <Property Name="IsIPv4" Type="Edm.Boolean"/>
1166
+ <Property Name="IsMulticastPool" Type="Edm.Boolean"/>
1167
+ <Property Name="IsViewOnly" Type="Edm.Boolean"/>
1168
+ <Property Name="MarkedForDeletion" Type="Edm.Boolean"/>
1169
+ <Property Name="ExternalSyncTime" Type="Edm.DateTime"/>
1170
+ <Property Name="VLanID" Type="Edm.Int32"/>
1171
+ <Property Name="AvailableAddresses" Type="Edm.Decimal"/>
1172
+ <Property Name="AvailableDIPAddresses" Type="Edm.Decimal"/>
1173
+ <Property Name="AvailableVIPAddresses" Type="Edm.Decimal"/>
1174
+ <Property Name="ReservedAddresses" Type="Edm.Decimal"/>
1175
+ <Property Name="TotalAddresses" Type="Edm.Decimal"/>
1176
+ <Property Name="TotalDIPAddresses" Type="Edm.Decimal"/>
1177
+ <Property Name="TotalVIPAddresses" Type="Edm.Decimal"/>
1178
+ <Property Name="UnassignedAddresses" Type="Edm.Decimal"/>
1179
+ <Property Name="UnassignedDIPAddresses" Type="Edm.Decimal"/>
1180
+ <Property Name="UnassignedVIPAddresses" Type="Edm.Decimal"/>
1181
+ <Property Name="AddressFamily" Type="Edm.String"/>
1182
+ <Property Name="Description" Type="Edm.String"/>
1183
+ <Property Name="DNSSuffix" Type="Edm.String"/>
1184
+ <Property Name="IPAddressRangeEnd" Type="Edm.String"/>
1185
+ <Property Name="IPAddressRangeStart" Type="Edm.String"/>
1186
+ <Property Name="IPAddressReservedSet" Type="Edm.String"/>
1187
+ <Property Name="Name" Type="Edm.String"/>
1188
+ <Property Name="Subnet" Type="Edm.String"/>
1189
+ <Property Name="VIPAddressSet" Type="Edm.String"/>
1190
+ <Property Name="NetworkEntityAccessType" Type="Edm.String"/>
1191
+ <Property Name="DNSSearchSuffixes" Type="Collection(Edm.String)" Nullable="false"/>
1192
+ <Property Name="DNSServers" Type="Collection(Edm.String)" Nullable="false"/>
1193
+ <Property Name="WINSServers" Type="Collection(Edm.String)" Nullable="false"/>
1194
+ <Property Name="DefaultGatewayIPAddresses" Type="Collection(Edm.String)" Nullable="false"/>
1195
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
1196
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
1197
+ <Property Name="ExternalId" Type="Edm.Guid"/>
1198
+ <Property Name="VMSubnetId" Type="Edm.Guid"/>
1199
+ <Property Name="LogicalNetworkDefinitionId" Type="Edm.Guid"/>
1200
+ </EntityType>
1201
+ <EntityType Name="VMSubnet">
1202
+ <Key>
1203
+ <PropertyRef Name="StampId"/>
1204
+ <PropertyRef Name="ID"/>
1205
+ </Key>
1206
+ <Property Name="Name" Type="Edm.String"/>
1207
+ <Property Name="Subnet" Type="Edm.String"/>
1208
+ <Property Name="VMNetworkName" Type="Edm.String"/>
1209
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
1210
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
1211
+ <Property Name="VMNetworkId" Type="Edm.Guid"/>
1212
+ </EntityType>
1213
+ <EntityType Name="HardwareProfile">
1214
+ <Key>
1215
+ <PropertyRef Name="StampId"/>
1216
+ <PropertyRef Name="ID"/>
1217
+ </Key>
1218
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
1219
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
1220
+ <Property Name="AccessedTime" Type="Edm.DateTime"/>
1221
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
1222
+ <Property Name="CPUCount" Type="Edm.Byte"/>
1223
+ <Property Name="CPUMax" Type="Edm.Int32"/>
1224
+ <Property Name="CPUReserve" Type="Edm.Int32"/>
1225
+ <Property Name="CPUTypeId" Type="Edm.Guid"/>
1226
+ <Property Name="CreationTime" Type="Edm.DateTime"/>
1227
+ <Property Name="DiskIO" Type="Edm.Int32"/>
1228
+ <Property Name="ExpectedCPUUtilization" Type="Edm.Int32"/>
1229
+ <Property Name="Enabled" Type="Edm.Boolean"/>
1230
+ <Property Name="LimitCPUForMigration" Type="Edm.Boolean"/>
1231
+ <Property Name="LimitCPUFunctionality" Type="Edm.Boolean"/>
1232
+ <Property Name="Memory" Type="Edm.Int32"/>
1233
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
1234
+ <Property Name="Name" Type="Edm.String"/>
1235
+ <Property Name="NetworkUtilization" Type="Edm.Int32"/>
1236
+ <Property Name="Owner" Type="VMM.UserAndRole"/>
1237
+ <Property Name="GrantedToList" Type="Collection(VMM.UserAndRole)" Nullable="false"/>
1238
+ <Property Name="RelativeWeight" Type="Edm.Int32"/>
1239
+ <Property Name="ShareSCSIBus" Type="Edm.Boolean"/>
1240
+ <Property Name="TotalVHDCapacity" Type="Edm.Int64"/>
1241
+ <Property Name="UndoDisksEnabled" Type="Edm.Boolean"/>
1242
+ <Property Name="Accessibility" Type="Edm.String"/>
1243
+ <Property Name="Description" Type="Edm.String"/>
1244
+ <Property Name="NumLockEnabled" Type="Edm.Boolean"/>
1245
+ <NavigationProperty Name="VirtualNetworkAdapters" Relationship="VMM.HardwareProfile_VirtualNetworkAdapters" ToRole="VirtualNetworkAdapters" FromRole="HardwareProfile"/>
1246
+ <NavigationProperty Name="VirtualSCSIAdapters" Relationship="VMM.HardwareProfile_VirtualSCSIAdapters" ToRole="VirtualSCSIAdapters" FromRole="HardwareProfile"/>
1247
+ <NavigationProperty Name="VirtualDVDDrives" Relationship="VMM.HardwareProfile_VirtualDVDDrives" ToRole="VirtualDVDDrives" FromRole="HardwareProfile"/>
1248
+ </EntityType>
1249
+ <EntityType Name="RunAsAccount">
1250
+ <Key>
1251
+ <PropertyRef Name="ID"/>
1252
+ <PropertyRef Name="StampId"/>
1253
+ </Key>
1254
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
1255
+ <Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
1256
+ <Property Name="Name" Type="Edm.String"/>
1257
+ <Property Name="UserName" Type="Edm.String"/>
1258
+ <Property Name="Password" Type="Edm.String"/>
1259
+ <Property Name="Domain" Type="Edm.String"/>
1260
+ <Property Name="Enabled" Type="Edm.Boolean"/>
1261
+ <Property Name="GrantedToList" Type="Collection(VMM.UserAndRole)" Nullable="false"/>
1262
+ <Property Name="Owner" Type="VMM.UserAndRole"/>
1263
+ <Property Name="Description" Type="Edm.String"/>
1264
+ <Property Name="NoValidation" Type="Edm.Boolean"/>
1265
+ <Property Name="AddedTime" Type="Edm.DateTime"/>
1266
+ <Property Name="ModifiedTime" Type="Edm.DateTime"/>
1267
+ </EntityType>
1268
+ <EntityType Name="BasicStatistics">
1269
+ <Key>
1270
+ <PropertyRef Name="ID"/>
1271
+ </Key>
1272
+ <Property Name="ID" Type="Edm.Guid" Nullable="false"/>
1273
+ <Property Name="Clouds" Type="Edm.Int32" Nullable="false"/>
1274
+ <Property Name="ServiceDeployments" Type="Edm.Int32" Nullable="false"/>
1275
+ <Property Name="ServiceDeploymentsNotRunning" Type="Edm.Int32" Nullable="false"/>
1276
+ <Property Name="ServiceDeploymentsRequiringAttention" Type="Edm.Int32" Nullable="false"/>
1277
+ <Property Name="ServiceVMs" Type="Edm.Int32" Nullable="false"/>
1278
+ <Property Name="StandaloneVMs" Type="Edm.Int32" Nullable="false"/>
1279
+ <Property Name="VMsNotRunning" Type="Edm.Int32" Nullable="false"/>
1280
+ <Property Name="VMsRequiringAttention" Type="Edm.Int32" Nullable="false"/>
1281
+ </EntityType>
1282
+ <Association Name="UserRole_Clouds">
1283
+ <End Type="VMM.UserRole" Role="UserRole" Multiplicity="*"/>
1284
+ <End Type="VMM.Cloud" Role="Clouds" Multiplicity="*"/>
1285
+ </Association>
1286
+ <Association Name="VirtualMachine_Cloud">
1287
+ <End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
1288
+ <End Type="VMM.Cloud" Role="Cloud" Multiplicity="0..1"/>
1289
+ </Association>
1290
+ <Association Name="VirtualMachine_MostRecentTask">
1291
+ <End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
1292
+ <End Type="VMM.Job" Role="MostRecentTask" Multiplicity="0..1"/>
1293
+ </Association>
1294
+ <Association Name="VirtualMachine_FailedJob">
1295
+ <End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
1296
+ <End Type="VMM.Job" Role="FailedJob" Multiplicity="0..1"/>
1297
+ </Association>
1298
+ <Association Name="VirtualMachine_VirtualNetworkAdapters">
1299
+ <End Type="VMM.VirtualNetworkAdapter" Role="VirtualNetworkAdapters" Multiplicity="*"/>
1300
+ <End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
1301
+ </Association>
1302
+ <Association Name="VirtualMachine_VMCheckpoints">
1303
+ <End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
1304
+ <End Type="VMM.VMCheckPoint" Role="VMCheckpoints" Multiplicity="*"/>
1305
+ </Association>
1306
+ <Association Name="VirtualMachine_VirtualSCSIAdapters">
1307
+ <End Type="VMM.VirtualSCSIAdapter" Role="VirtualSCSIAdapters" Multiplicity="*"/>
1308
+ <End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
1309
+ </Association>
1310
+ <Association Name="VirtualMachine_VirtualHardDisks">
1311
+ <End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
1312
+ <End Type="VMM.VirtualHardDisk" Role="VirtualHardDisks" Multiplicity="*"/>
1313
+ </Association>
1314
+ <Association Name="VirtualMachine_VirtualDVDDrives">
1315
+ <End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
1316
+ <End Type="VMM.VirtualDVDDrive" Role="VirtualDVDDrives" Multiplicity="*"/>
1317
+ </Association>
1318
+ <Association Name="VirtualMachine_VirtualDiskDrives">
1319
+ <End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
1320
+ <End Type="VMM.VirtualDiskDrive" Role="VirtualDiskDrives" Multiplicity="*"/>
1321
+ </Association>
1322
+ <Association Name="VirtualDVDDrive_ISO">
1323
+ <End Type="VMM.VirtualDVDDrive" Role="VirtualDVDDrive" Multiplicity="*"/>
1324
+ <End Type="VMM.ISO" Role="ISO" Multiplicity="0..1"/>
1325
+ </Association>
1326
+ <Association Name="VMTemplate_VirtualNetworkAdapters">
1327
+ <End Type="VMM.VirtualNetworkAdapter" Role="VirtualNetworkAdapters" Multiplicity="*"/>
1328
+ <End Type="VMM.VMTemplate" Role="VMTemplate" Multiplicity="*"/>
1329
+ </Association>
1330
+ <Association Name="VMTemplate_VirtualSCSIAdapters">
1331
+ <End Type="VMM.VirtualSCSIAdapter" Role="VirtualSCSIAdapters" Multiplicity="*"/>
1332
+ <End Type="VMM.VMTemplate" Role="VMTemplate" Multiplicity="*"/>
1333
+ </Association>
1334
+ <Association Name="VMTemplate_VirtualHardDisks">
1335
+ <End Type="VMM.VirtualHardDisk" Role="VirtualHardDisks" Multiplicity="*"/>
1336
+ <End Type="VMM.VMTemplate" Role="VMTemplate" Multiplicity="*"/>
1337
+ </Association>
1338
+ <Association Name="VMTemplate_VirtualDVDDrives">
1339
+ <End Type="VMM.VirtualDVDDrive" Role="VirtualDVDDrives" Multiplicity="*"/>
1340
+ <End Type="VMM.VMTemplate" Role="VMTemplate" Multiplicity="*"/>
1341
+ </Association>
1342
+ <Association Name="VMTemplate_VirtualDiskDrives">
1343
+ <End Type="VMM.VirtualDiskDrive" Role="VirtualDiskDrives" Multiplicity="*"/>
1344
+ <End Type="VMM.VMTemplate" Role="VMTemplate" Multiplicity="*"/>
1345
+ </Association>
1346
+ <Association Name="ISO_LibraryShare">
1347
+ <End Type="VMM.ISO" Role="ISO" Multiplicity="*"/>
1348
+ <End Type="VMM.LibraryShare" Role="LibraryShare" Multiplicity="0..1"/>
1349
+ </Association>
1350
+ <Association Name="Cloud_Capacity">
1351
+ <End Type="VMM.CloudCapacity" Role="Capacity" Multiplicity="*"/>
1352
+ <End Type="VMM.Cloud" Role="Cloud" Multiplicity="*"/>
1353
+ </Association>
1354
+ <Association Name="Cloud_LogicalNetworks">
1355
+ <End Type="VMM.LogicalNetwork" Role="LogicalNetworks" Multiplicity="*"/>
1356
+ <End Type="VMM.Cloud" Role="Cloud" Multiplicity="*"/>
1357
+ </Association>
1358
+ <Association Name="Cloud_CapabilityProfiles">
1359
+ <End Type="VMM.Cloud" Role="Cloud" Multiplicity="*"/>
1360
+ <End Type="VMM.CapabilityProfile" Role="CapabilityProfiles" Multiplicity="*"/>
1361
+ </Association>
1362
+ <Association Name="Cloud_LibraryShares">
1363
+ <End Type="VMM.Cloud" Role="Cloud" Multiplicity="*"/>
1364
+ <End Type="VMM.LibraryShare" Role="LibraryShares" Multiplicity="*"/>
1365
+ </Association>
1366
+ <Association Name="Cloud_QuotaAndUsageComponents">
1367
+ <End Type="VMM.QuotaAndUsageComponent" Role="QuotaAndUsageComponents" Multiplicity="*"/>
1368
+ <End Type="VMM.Cloud" Role="Cloud" Multiplicity="*"/>
1369
+ </Association>
1370
+ <Association Name="VirtualDiskDrive_VirtualHardDisk">
1371
+ <End Type="VMM.VirtualDiskDrive" Role="VirtualDiskDrive" Multiplicity="*"/>
1372
+ <End Type="VMM.VirtualHardDisk" Role="VirtualHardDisk" Multiplicity="0..1"/>
1373
+ </Association>
1374
+ <Association Name="VMCheckPoint_ParentCheckPoint">
1375
+ <End Type="VMM.VMCheckPoint" Role="ParentCheckPoint" Multiplicity="0..1"/>
1376
+ <End Type="VMM.VMCheckPoint" Role="VMCheckPoint" Multiplicity="*"/>
1377
+ </Association>
1378
+ <Association Name="ServiceTemplate_ComputerTierTemplates">
1379
+ <End Type="VMM.ServiceTemplate" Role="ServiceTemplate" Multiplicity="*"/>
1380
+ <End Type="VMM.ComputerTierTemplate" Role="ComputerTierTemplates" Multiplicity="*"/>
1381
+ </Association>
1382
+ <Association Name="ServiceTemplate_ApplicationHostTemplates">
1383
+ <End Type="VMM.ServiceTemplate" Role="ServiceTemplate" Multiplicity="*"/>
1384
+ <End Type="VMM.ApplicationHostTemplate" Role="ApplicationHostTemplates" Multiplicity="*"/>
1385
+ </Association>
1386
+ <Association Name="Service_FailedJob">
1387
+ <End Type="VMM.Service" Role="Service" Multiplicity="*"/>
1388
+ <End Type="VMM.Job" Role="FailedJob" Multiplicity="0..1"/>
1389
+ </Association>
1390
+ <Association Name="Service_PendingServiceTemplate">
1391
+ <End Type="VMM.ServiceTemplate" Role="PendingServiceTemplate" Multiplicity="0..1"/>
1392
+ <End Type="VMM.Service" Role="Service" Multiplicity="*"/>
1393
+ </Association>
1394
+ <Association Name="Service_ServiceTemplate">
1395
+ <End Type="VMM.ServiceTemplate" Role="ServiceTemplate" Multiplicity="0..1"/>
1396
+ <End Type="VMM.Service" Role="Service" Multiplicity="*"/>
1397
+ </Association>
1398
+ <Association Name="Service_Cloud">
1399
+ <End Type="VMM.Service" Role="Service" Multiplicity="*"/>
1400
+ <End Type="VMM.Cloud" Role="Cloud" Multiplicity="0..1"/>
1401
+ </Association>
1402
+ <Association Name="Service_ComputerTiers">
1403
+ <End Type="VMM.Service" Role="Service" Multiplicity="*"/>
1404
+ <End Type="VMM.ComputerTier" Role="ComputerTiers" Multiplicity="*"/>
1405
+ </Association>
1406
+ <Association Name="Service_MostRecentTask">
1407
+ <End Type="VMM.Service" Role="Service" Multiplicity="*"/>
1408
+ <End Type="VMM.Job" Role="MostRecentTask" Multiplicity="0..1"/>
1409
+ </Association>
1410
+ <Association Name="Service_ApplicationHosts">
1411
+ <End Type="VMM.Service" Role="Service" Multiplicity="*"/>
1412
+ <End Type="VMM.ApplicationHost" Role="ApplicationHosts" Multiplicity="*"/>
1413
+ </Association>
1414
+ <Association Name="ComputerTier_ComputerTierTemplate">
1415
+ <End Type="VMM.ComputerTierTemplate" Role="ComputerTierTemplate" Multiplicity="0..1"/>
1416
+ <End Type="VMM.ComputerTier" Role="ComputerTier" Multiplicity="*"/>
1417
+ </Association>
1418
+ <Association Name="ComputerTier_VMs">
1419
+ <End Type="VMM.VirtualMachine" Role="VMs" Multiplicity="*"/>
1420
+ <End Type="VMM.ComputerTier" Role="ComputerTier" Multiplicity="*"/>
1421
+ </Association>
1422
+ <Association Name="ComputerTier_MostRecentTask">
1423
+ <End Type="VMM.Job" Role="MostRecentTask" Multiplicity="0..1"/>
1424
+ <End Type="VMM.ComputerTier" Role="ComputerTier" Multiplicity="*"/>
1425
+ </Association>
1426
+ <Association Name="ComputerTierTemplate_VMTemplate">
1427
+ <End Type="VMM.VMTemplate" Role="VMTemplate" Multiplicity="0..1"/>
1428
+ <End Type="VMM.ComputerTierTemplate" Role="ComputerTierTemplate" Multiplicity="*"/>
1429
+ </Association>
1430
+ <Association Name="ApplicationHost_ApplicationHostTemplate">
1431
+ <End Type="VMM.ApplicationHostTemplate" Role="ApplicationHostTemplate" Multiplicity="0..1"/>
1432
+ <End Type="VMM.ApplicationHost" Role="ApplicationHost" Multiplicity="*"/>
1433
+ </Association>
1434
+ <Association Name="HardwareProfile_VirtualNetworkAdapters">
1435
+ <End Type="VMM.VirtualNetworkAdapter" Role="VirtualNetworkAdapters" Multiplicity="*"/>
1436
+ <End Type="VMM.HardwareProfile" Role="HardwareProfile" Multiplicity="*"/>
1437
+ </Association>
1438
+ <Association Name="HardwareProfile_VirtualSCSIAdapters">
1439
+ <End Type="VMM.VirtualSCSIAdapter" Role="VirtualSCSIAdapters" Multiplicity="*"/>
1440
+ <End Type="VMM.HardwareProfile" Role="HardwareProfile" Multiplicity="*"/>
1441
+ </Association>
1442
+ <Association Name="HardwareProfile_VirtualDVDDrives">
1443
+ <End Type="VMM.VirtualDVDDrive" Role="VirtualDVDDrives" Multiplicity="*"/>
1444
+ <End Type="VMM.HardwareProfile" Role="HardwareProfile" Multiplicity="*"/>
1445
+ </Association>
1446
+ <EntityContainer Name="VMM" m:IsDefaultEntityContainer="true">
1447
+ <EntitySet Name="GuestInfos" EntityType="VMM.GuestInfo"/>
1448
+ <EntitySet Name="PerformanceData" EntityType="VMM.PerformanceData"/>
1449
+ <EntitySet Name="UserRoles" EntityType="VMM.UserRole"/>
1450
+ <EntitySet Name="VirtualMachines" EntityType="VMM.VirtualMachine"/>
1451
+ <EntitySet Name="VirtualDVDDrives" EntityType="VMM.VirtualDVDDrive"/>
1452
+ <EntitySet Name="VirtualHardDisks" EntityType="VMM.VirtualHardDisk"/>
1453
+ <EntitySet Name="VMTemplates" EntityType="VMM.VMTemplate"/>
1454
+ <EntitySet Name="VirtualNetworkAdapters" EntityType="VMM.VirtualNetworkAdapter"/>
1455
+ <EntitySet Name="VirtualSCSIAdapters" EntityType="VMM.VirtualSCSIAdapter"/>
1456
+ <EntitySet Name="ISOs" EntityType="VMM.ISO"/>
1457
+ <EntitySet Name="Jobs" EntityType="VMM.Job"/>
1458
+ <EntitySet Name="Clouds" EntityType="VMM.Cloud"/>
1459
+ <EntitySet Name="CapabilityProfiles" EntityType="VMM.CapabilityProfile"/>
1460
+ <EntitySet Name="CloudCapacities" EntityType="VMM.CloudCapacity"/>
1461
+ <EntitySet Name="QuotaAndUsageComponents" EntityType="VMM.QuotaAndUsageComponent"/>
1462
+ <EntitySet Name="VirtualDiskDrives" EntityType="VMM.VirtualDiskDrive"/>
1463
+ <EntitySet Name="VMCheckPoints" EntityType="VMM.VMCheckPoint"/>
1464
+ <EntitySet Name="LogicalNetworks" EntityType="VMM.LogicalNetwork"/>
1465
+ <EntitySet Name="ServiceTemplates" EntityType="VMM.ServiceTemplate"/>
1466
+ <EntitySet Name="Services" EntityType="VMM.Service"/>
1467
+ <EntitySet Name="ComputerTiers" EntityType="VMM.ComputerTier"/>
1468
+ <EntitySet Name="ComputerTierTemplates" EntityType="VMM.ComputerTierTemplate"/>
1469
+ <EntitySet Name="ApplicationHosts" EntityType="VMM.ApplicationHost"/>
1470
+ <EntitySet Name="ApplicationHostTemplates" EntityType="VMM.ApplicationHostTemplate"/>
1471
+ <EntitySet Name="LibraryShares" EntityType="VMM.LibraryShare"/>
1472
+ <EntitySet Name="VMNetworks" EntityType="VMM.VMNetwork"/>
1473
+ <EntitySet Name="StaticIPAddressPools" EntityType="VMM.StaticIPAddressPool"/>
1474
+ <EntitySet Name="VMSubnets" EntityType="VMM.VMSubnet"/>
1475
+ <EntitySet Name="HardwareProfiles" EntityType="VMM.HardwareProfile"/>
1476
+ <EntitySet Name="RunAsAccounts" EntityType="VMM.RunAsAccount"/>
1477
+ <EntitySet Name="BasicStatistics" EntityType="VMM.BasicStatistics"/>
1478
+ <AssociationSet Name="UserRoleCloudRelationship" Association="VMM.UserRole_Clouds">
1479
+ <End Role="UserRole" EntitySet="UserRoles"/>
1480
+ <End Role="Clouds" EntitySet="Clouds"/>
1481
+ </AssociationSet>
1482
+ <AssociationSet Name="VMCloudRelationship" Association="VMM.VirtualMachine_Cloud">
1483
+ <End Role="VirtualMachine" EntitySet="VirtualMachines"/>
1484
+ <End Role="Cloud" EntitySet="Clouds"/>
1485
+ </AssociationSet>
1486
+ <AssociationSet Name="VMMostRecentTaskRelationship" Association="VMM.VirtualMachine_MostRecentTask">
1487
+ <End Role="VirtualMachine" EntitySet="VirtualMachines"/>
1488
+ <End Role="MostRecentTask" EntitySet="Jobs"/>
1489
+ </AssociationSet>
1490
+ <AssociationSet Name="VMFailedJobRelationship" Association="VMM.VirtualMachine_FailedJob">
1491
+ <End Role="VirtualMachine" EntitySet="VirtualMachines"/>
1492
+ <End Role="FailedJob" EntitySet="Jobs"/>
1493
+ </AssociationSet>
1494
+ <AssociationSet Name="VMVirtualNetworkAdapterRelationship" Association="VMM.VirtualMachine_VirtualNetworkAdapters">
1495
+ <End Role="VirtualMachine" EntitySet="VirtualMachines"/>
1496
+ <End Role="VirtualNetworkAdapters" EntitySet="VirtualNetworkAdapters"/>
1497
+ </AssociationSet>
1498
+ <AssociationSet Name="VMVMCheckPointsRelationship" Association="VMM.VirtualMachine_VMCheckpoints">
1499
+ <End Role="VirtualMachine" EntitySet="VirtualMachines"/>
1500
+ <End Role="VMCheckpoints" EntitySet="VMCheckPoints"/>
1501
+ </AssociationSet>
1502
+ <AssociationSet Name="VMSCSIAdaptersRelationship" Association="VMM.VirtualMachine_VirtualSCSIAdapters">
1503
+ <End Role="VirtualMachine" EntitySet="VirtualMachines"/>
1504
+ <End Role="VirtualSCSIAdapters" EntitySet="VirtualSCSIAdapters"/>
1505
+ </AssociationSet>
1506
+ <AssociationSet Name="VMVirtualHardDisksRelationship" Association="VMM.VirtualMachine_VirtualHardDisks">
1507
+ <End Role="VirtualMachine" EntitySet="VirtualMachines"/>
1508
+ <End Role="VirtualHardDisks" EntitySet="VirtualHardDisks"/>
1509
+ </AssociationSet>
1510
+ <AssociationSet Name="VMVirtualDVDDrivesRelationship" Association="VMM.VirtualMachine_VirtualDVDDrives">
1511
+ <End Role="VirtualMachine" EntitySet="VirtualMachines"/>
1512
+ <End Role="VirtualDVDDrives" EntitySet="VirtualDVDDrives"/>
1513
+ </AssociationSet>
1514
+ <AssociationSet Name="VMVirtualDiskDrivesRelationship" Association="VMM.VirtualMachine_VirtualDiskDrives">
1515
+ <End Role="VirtualMachine" EntitySet="VirtualMachines"/>
1516
+ <End Role="VirtualDiskDrives" EntitySet="VirtualDiskDrives"/>
1517
+ </AssociationSet>
1518
+ <AssociationSet Name="VirtualDVDDriveISORelationship" Association="VMM.VirtualDVDDrive_ISO">
1519
+ <End Role="VirtualDVDDrive" EntitySet="VirtualDVDDrives"/>
1520
+ <End Role="ISO" EntitySet="ISOs"/>
1521
+ </AssociationSet>
1522
+ <AssociationSet Name="VMMTemplateVirtualNetworkAdapterRelationship" Association="VMM.VMTemplate_VirtualNetworkAdapters">
1523
+ <End Role="VMTemplate" EntitySet="VMTemplates"/>
1524
+ <End Role="VirtualNetworkAdapters" EntitySet="VirtualNetworkAdapters"/>
1525
+ </AssociationSet>
1526
+ <AssociationSet Name="VMTemplateSCSIAdaptersRelationship" Association="VMM.VMTemplate_VirtualSCSIAdapters">
1527
+ <End Role="VMTemplate" EntitySet="VMTemplates"/>
1528
+ <End Role="VirtualSCSIAdapters" EntitySet="VirtualSCSIAdapters"/>
1529
+ </AssociationSet>
1530
+ <AssociationSet Name="VMTemplateVirtualHardDisksRelationship" Association="VMM.VMTemplate_VirtualHardDisks">
1531
+ <End Role="VMTemplate" EntitySet="VMTemplates"/>
1532
+ <End Role="VirtualHardDisks" EntitySet="VirtualHardDisks"/>
1533
+ </AssociationSet>
1534
+ <AssociationSet Name="VMTemplateVirtualDVDDrivesRelationship" Association="VMM.VMTemplate_VirtualDVDDrives">
1535
+ <End Role="VMTemplate" EntitySet="VMTemplates"/>
1536
+ <End Role="VirtualDVDDrives" EntitySet="VirtualDVDDrives"/>
1537
+ </AssociationSet>
1538
+ <AssociationSet Name="VMTemplateVirtualDiskDrivesRelationship" Association="VMM.VMTemplate_VirtualDiskDrives">
1539
+ <End Role="VMTemplate" EntitySet="VMTemplates"/>
1540
+ <End Role="VirtualDiskDrives" EntitySet="VirtualDiskDrives"/>
1541
+ </AssociationSet>
1542
+ <AssociationSet Name="LibraryShareISORelationship" Association="VMM.ISO_LibraryShare">
1543
+ <End Role="ISO" EntitySet="ISOs"/>
1544
+ <End Role="LibraryShare" EntitySet="LibraryShares"/>
1545
+ </AssociationSet>
1546
+ <AssociationSet Name="CloudCapacityRelationship" Association="VMM.Cloud_Capacity">
1547
+ <End Role="Cloud" EntitySet="Clouds"/>
1548
+ <End Role="Capacity" EntitySet="CloudCapacities"/>
1549
+ </AssociationSet>
1550
+ <AssociationSet Name="LogicalNetworkCloudRelationship" Association="VMM.Cloud_LogicalNetworks">
1551
+ <End Role="Cloud" EntitySet="Clouds"/>
1552
+ <End Role="LogicalNetworks" EntitySet="LogicalNetworks"/>
1553
+ </AssociationSet>
1554
+ <AssociationSet Name="CloudCapabilityProfileRelationship" Association="VMM.Cloud_CapabilityProfiles">
1555
+ <End Role="Cloud" EntitySet="Clouds"/>
1556
+ <End Role="CapabilityProfiles" EntitySet="CapabilityProfiles"/>
1557
+ </AssociationSet>
1558
+ <AssociationSet Name="LibraryShareCloudRelationship" Association="VMM.Cloud_LibraryShares">
1559
+ <End Role="Cloud" EntitySet="Clouds"/>
1560
+ <End Role="LibraryShares" EntitySet="LibraryShares"/>
1561
+ </AssociationSet>
1562
+ <AssociationSet Name="CloudQuotaAndUsageComponentRelationship" Association="VMM.Cloud_QuotaAndUsageComponents">
1563
+ <End Role="Cloud" EntitySet="Clouds"/>
1564
+ <End Role="QuotaAndUsageComponents" EntitySet="QuotaAndUsageComponents"/>
1565
+ </AssociationSet>
1566
+ <AssociationSet Name="VirtualDiskDriveVirtualHardDiskRelationship" Association="VMM.VirtualDiskDrive_VirtualHardDisk">
1567
+ <End Role="VirtualDiskDrive" EntitySet="VirtualDiskDrives"/>
1568
+ <End Role="VirtualHardDisk" EntitySet="VirtualHardDisks"/>
1569
+ </AssociationSet>
1570
+ <AssociationSet Name="VMCheckPointVMCheckPointRelationship" Association="VMM.VMCheckPoint_ParentCheckPoint">
1571
+ <End Role="VMCheckPoint" EntitySet="VMCheckPoints"/>
1572
+ <End Role="ParentCheckPoint" EntitySet="VMCheckPoints"/>
1573
+ </AssociationSet>
1574
+ <AssociationSet Name="ServiceTemplateComputerTierTemplateRelationship" Association="VMM.ServiceTemplate_ComputerTierTemplates">
1575
+ <End Role="ServiceTemplate" EntitySet="ServiceTemplates"/>
1576
+ <End Role="ComputerTierTemplates" EntitySet="ComputerTierTemplates"/>
1577
+ </AssociationSet>
1578
+ <AssociationSet Name="ApplicationHostTemplateServiceTemplateRelationship" Association="VMM.ServiceTemplate_ApplicationHostTemplates">
1579
+ <End Role="ServiceTemplate" EntitySet="ServiceTemplates"/>
1580
+ <End Role="ApplicationHostTemplates" EntitySet="ApplicationHostTemplates"/>
1581
+ </AssociationSet>
1582
+ <AssociationSet Name="ServiceFailedJobRelationship" Association="VMM.Service_FailedJob">
1583
+ <End Role="Service" EntitySet="Services"/>
1584
+ <End Role="FailedJob" EntitySet="Jobs"/>
1585
+ </AssociationSet>
1586
+ <AssociationSet Name="ServicePendingServiceTemplateRelationship" Association="VMM.Service_PendingServiceTemplate">
1587
+ <End Role="Service" EntitySet="Services"/>
1588
+ <End Role="PendingServiceTemplate" EntitySet="ServiceTemplates"/>
1589
+ </AssociationSet>
1590
+ <AssociationSet Name="ServiceServiceTemplateRelationship" Association="VMM.Service_ServiceTemplate">
1591
+ <End Role="Service" EntitySet="Services"/>
1592
+ <End Role="ServiceTemplate" EntitySet="ServiceTemplates"/>
1593
+ </AssociationSet>
1594
+ <AssociationSet Name="ServiceCloudRelationship" Association="VMM.Service_Cloud">
1595
+ <End Role="Service" EntitySet="Services"/>
1596
+ <End Role="Cloud" EntitySet="Clouds"/>
1597
+ </AssociationSet>
1598
+ <AssociationSet Name="ServiceComputerTierRelationship" Association="VMM.Service_ComputerTiers">
1599
+ <End Role="Service" EntitySet="Services"/>
1600
+ <End Role="ComputerTiers" EntitySet="ComputerTiers"/>
1601
+ </AssociationSet>
1602
+ <AssociationSet Name="ServiceMostRecentTaskRelationship" Association="VMM.Service_MostRecentTask">
1603
+ <End Role="Service" EntitySet="Services"/>
1604
+ <End Role="MostRecentTask" EntitySet="Jobs"/>
1605
+ </AssociationSet>
1606
+ <AssociationSet Name="ApplicationHostServiceRelationship" Association="VMM.Service_ApplicationHosts">
1607
+ <End Role="Service" EntitySet="Services"/>
1608
+ <End Role="ApplicationHosts" EntitySet="ApplicationHosts"/>
1609
+ </AssociationSet>
1610
+ <AssociationSet Name="ComputerTierComputerTierTemplateRelationship" Association="VMM.ComputerTier_ComputerTierTemplate">
1611
+ <End Role="ComputerTier" EntitySet="ComputerTiers"/>
1612
+ <End Role="ComputerTierTemplate" EntitySet="ComputerTierTemplates"/>
1613
+ </AssociationSet>
1614
+ <AssociationSet Name="ComputerTierVMRelationship" Association="VMM.ComputerTier_VMs">
1615
+ <End Role="ComputerTier" EntitySet="ComputerTiers"/>
1616
+ <End Role="VMs" EntitySet="VirtualMachines"/>
1617
+ </AssociationSet>
1618
+ <AssociationSet Name="ComputerTierMostRecentTaskRelationship" Association="VMM.ComputerTier_MostRecentTask">
1619
+ <End Role="ComputerTier" EntitySet="ComputerTiers"/>
1620
+ <End Role="MostRecentTask" EntitySet="Jobs"/>
1621
+ </AssociationSet>
1622
+ <AssociationSet Name="ComputerTierTemplateVMTemplateRelationship" Association="VMM.ComputerTierTemplate_VMTemplate">
1623
+ <End Role="ComputerTierTemplate" EntitySet="ComputerTierTemplates"/>
1624
+ <End Role="VMTemplate" EntitySet="VMTemplates"/>
1625
+ </AssociationSet>
1626
+ <AssociationSet Name="ApplicationHostApplicationHostTemplateRelationship" Association="VMM.ApplicationHost_ApplicationHostTemplate">
1627
+ <End Role="ApplicationHost" EntitySet="ApplicationHosts"/>
1628
+ <End Role="ApplicationHostTemplate" EntitySet="ApplicationHostTemplates"/>
1629
+ </AssociationSet>
1630
+ <AssociationSet Name="HardwareProfileVirtualNetworkAdapterRelationship" Association="VMM.HardwareProfile_VirtualNetworkAdapters">
1631
+ <End Role="HardwareProfile" EntitySet="HardwareProfiles"/>
1632
+ <End Role="VirtualNetworkAdapters" EntitySet="VirtualNetworkAdapters"/>
1633
+ </AssociationSet>
1634
+ <AssociationSet Name="HardwareProfileSCSIAdaptersRelationship" Association="VMM.HardwareProfile_VirtualSCSIAdapters">
1635
+ <End Role="HardwareProfile" EntitySet="HardwareProfiles"/>
1636
+ <End Role="VirtualSCSIAdapters" EntitySet="VirtualSCSIAdapters"/>
1637
+ </AssociationSet>
1638
+ <AssociationSet Name="HardwareProfileVirtualDVDDrivesRelationship" Association="VMM.HardwareProfile_VirtualDVDDrives">
1639
+ <End Role="HardwareProfile" EntitySet="HardwareProfiles"/>
1640
+ <End Role="VirtualDVDDrives" EntitySet="VirtualDVDDrives"/>
1641
+ </AssociationSet>
1642
+ </EntityContainer>
1643
+ </Schema>
1644
+ </edmx:DataServices>
1645
+ </edmx:Edmx>