ruby_odata 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +11 -0
- data/LICENSE +20 -22
- data/lib/ruby_odata.rb +1 -2
- data/lib/ruby_odata/service.rb +17 -2
- data/lib/ruby_odata/version.rb +1 -1
- data/ruby_odata.gemspec +4 -2
- data/spec/fixtures/error_without_message.xml +5 -0
- data/spec/fixtures/ms_system_center/edmx_ms_system_center_v2.xml +2120 -0
- data/spec/revised_service_spec.rb +17 -1
- data/spec/service_spec.rb +27 -1
- metadata +200 -264
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 13c318e42410f72bfbdb32c56c0286047a8c4ffb
|
4
|
+
data.tar.gz: 829b8aaf44049a72fe928006c4c0d949b029afb4
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ef9462813278a3a683c64f09aebae8a4f95022949d80900bc2cb9869cea8fcaaebde92192b86320f064ee53afa13ccb875c0280086ffc310216f195473fc6341
|
7
|
+
data.tar.gz: adfd48385615b5b8d17ea713dca6c6c6304792baa3ee765b95837a54e3e37191f088a429ade676a3bd6b35ef502bb1ca44d553c28ea5a2ebba4d14aee568d401
|
data/CHANGELOG.md
CHANGED
@@ -144,3 +144,14 @@
|
|
144
144
|
* Added the ability to query the OData service using the [$select system query option](http://www.odata.org/documentation/odata-v2-documentation/uri-conventions/#48_Select_System_Query_Option_select)
|
145
145
|
* Support for Int64 keys ([issue 39](https://github.com/visoft/ruby_odata/issues/39) and [issue 40](https://github.com/visoft/ruby_odata/pull/40), thanks [@nasali](https://github.com/nasali))
|
146
146
|
* New property `is_key` added to `PropertyMetadata` in order to determine the key properties for the class (found in the service's `class_metadata` collection)
|
147
|
+
|
148
|
+
## 0.1.6
|
149
|
+
* **BREAKING CHANGES**
|
150
|
+
* Ruby 1.8.7 support has been dropped, thus the backports gem has been removed from the ruby_odata (thanks [@betelgeuse](https://github.com/betelgeuse)) [issue 45 and 46](https://github.com/visoft/ruby_odata/pull/46)
|
151
|
+
|
152
|
+
* Bug Fixes
|
153
|
+
* Check that message is present before including it in the exception. Thanks [@rgould](https://github.com/rgould)
|
154
|
+
* Fixed problem with `FunctionImport`, OData dropped the `m:HttpMethod` attribute, see http://www.odata.org/2011/10/actions-in-odata/
|
155
|
+
|
156
|
+
* Other
|
157
|
+
* Changed license to MIT and added it to the gemspec
|
data/LICENSE
CHANGED
@@ -1,24 +1,22 @@
|
|
1
|
-
Copyright (c) 2010-2013
|
2
|
-
All rights reserved.
|
1
|
+
Copyright (c) 2010-2013 Visoft, Inc.
|
3
2
|
|
4
|
-
|
5
|
-
modification, are permitted provided that the following conditions are met:
|
6
|
-
* Redistributions of source code must retain the above copyright
|
7
|
-
notice, this list of conditions and the following disclaimer.
|
8
|
-
* Redistributions in binary form must reproduce the above copyright
|
9
|
-
notice, this list of conditions and the following disclaimer in the
|
10
|
-
documentation and/or other materials provided with the distribution.
|
11
|
-
* Neither the name of Visoft, Inc. nor the
|
12
|
-
names of its contributors may be used to endorse or promote products
|
13
|
-
derived from this software without specific prior written permission.
|
3
|
+
MIT License
|
14
4
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/lib/ruby_odata.rb
CHANGED
@@ -11,7 +11,6 @@ require "rest_client"
|
|
11
11
|
require "nokogiri"
|
12
12
|
require "bigdecimal"
|
13
13
|
require "bigdecimal/util"
|
14
|
-
require "backports"
|
15
14
|
require "addressable/uri"
|
16
15
|
|
17
16
|
require lib + "/ruby_odata/exceptions"
|
@@ -21,4 +20,4 @@ require lib + "/ruby_odata/query_builder"
|
|
21
20
|
require lib + "/ruby_odata/class_builder"
|
22
21
|
require lib + "/ruby_odata/operation"
|
23
22
|
require lib + "/ruby_odata/service"
|
24
|
-
require lib + "/ruby_odata/helpers"
|
23
|
+
require lib + "/ruby_odata/helpers"
|
data/lib/ruby_odata/service.rb
CHANGED
@@ -296,7 +296,18 @@ class Service
|
|
296
296
|
# Fill in the function imports
|
297
297
|
functions = @edmx.xpath("//edm:EntityContainer/edm:FunctionImport", @ds_namespaces)
|
298
298
|
functions.each do |f|
|
299
|
-
|
299
|
+
http_method_attribute = f.xpath("@m:HttpMethod", @ds_namespaces).first # HttpMethod is no longer required http://www.odata.org/2011/10/actions-in-odata/
|
300
|
+
is_side_effecting_attribute = f.xpath("@edm:IsSideEffecting", @ds_namespaces).first
|
301
|
+
|
302
|
+
http_method = 'POST' # default to POST
|
303
|
+
|
304
|
+
if http_method_attribute
|
305
|
+
http_method = http_method_attribute.content
|
306
|
+
elsif is_side_effecting_attribute
|
307
|
+
is_side_effecting = is_side_effecting_attribute.content
|
308
|
+
http_method = is_side_effecting ? 'POST' : 'GET'
|
309
|
+
end
|
310
|
+
|
300
311
|
return_type = f["ReturnType"]
|
301
312
|
inner_return_type = nil
|
302
313
|
unless return_type.nil?
|
@@ -368,7 +379,11 @@ class Service
|
|
368
379
|
code = e.http_code
|
369
380
|
error = Nokogiri::XML(e.response)
|
370
381
|
|
371
|
-
message = error.xpath("m:error/m:message", @ds_namespaces).first
|
382
|
+
message = if error.xpath("m:error/m:message", @ds_namespaces).first
|
383
|
+
error.xpath("m:error/m:message", @ds_namespaces).first.content
|
384
|
+
else
|
385
|
+
"Server returned error but no message."
|
386
|
+
end
|
372
387
|
raise ServiceError.new(code), message
|
373
388
|
end
|
374
389
|
|
data/lib/ruby_odata/version.rb
CHANGED
data/ruby_odata.gemspec
CHANGED
@@ -11,15 +11,17 @@ 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
|
|
18
|
+
s.required_ruby_version = '>= 1.9.3'
|
19
|
+
|
17
20
|
s.add_dependency("addressable", ">= 2.3.4")
|
18
21
|
s.add_dependency("i18n", "~> 0.6.0")
|
19
22
|
s.add_dependency("activesupport", ">= 3.0.0")
|
20
23
|
s.add_dependency("rest-client", ">= 1.5.1")
|
21
24
|
s.add_dependency("nokogiri", ">= 1.4.2")
|
22
|
-
s.add_dependency("backports", ">= 2.3.0")
|
23
25
|
|
24
26
|
s.add_development_dependency("rake", "0.9.2")
|
25
27
|
s.add_development_dependency("rspec", "~> 2.11.0")
|
@@ -38,4 +40,4 @@ Gem::Specification.new do |s|
|
|
38
40
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
39
41
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
40
42
|
s.require_paths = ["lib"]
|
41
|
-
end
|
43
|
+
end
|
@@ -0,0 +1,2120 @@
|
|
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="VirtualDiskDrive">
|
6
|
+
<Key>
|
7
|
+
<PropertyRef Name="ID"/>
|
8
|
+
<PropertyRef Name="StampId"/>
|
9
|
+
</Key>
|
10
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
11
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
12
|
+
<Property Name="Bus" Type="Edm.Byte"/>
|
13
|
+
<Property Name="BusType" Type="Edm.String"/>
|
14
|
+
<Property Name="IsVHD" Type="Edm.Boolean"/>
|
15
|
+
<Property Name="LUN" Type="Edm.Byte"/>
|
16
|
+
<Property Name="Name" Type="Edm.String"/>
|
17
|
+
<Property Name="VMId" Type="Edm.Guid"/>
|
18
|
+
<Property Name="TemplateId" Type="Edm.Guid"/>
|
19
|
+
<Property Name="ISOId" Type="Edm.Guid"/>
|
20
|
+
<Property Name="HostDrive" Type="Edm.String"/>
|
21
|
+
<Property Name="ISOLinked" Type="Edm.Boolean"/>
|
22
|
+
<Property Name="Accessibility" Type="Edm.String"/>
|
23
|
+
<Property Name="Description" Type="Edm.String"/>
|
24
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
25
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
26
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
27
|
+
<Property Name="VirtualHardDiskId" Type="Edm.Guid"/>
|
28
|
+
<Property Name="VolumeType" Type="Edm.String"/>
|
29
|
+
<Property Name="IDE" Type="Edm.Boolean"/>
|
30
|
+
<Property Name="SCSI" Type="Edm.Boolean"/>
|
31
|
+
<Property Name="FileName" Type="Edm.String"/>
|
32
|
+
<Property Name="Path" Type="Edm.String"/>
|
33
|
+
<Property Name="Size" Type="Edm.Int64"/>
|
34
|
+
<NavigationProperty Name="VirtualHardDisk" Relationship="VMM.VirtualDiskDrive_VirtualHardDisk" ToRole="VirtualHardDisk" FromRole="VirtualDiskDrive"/>
|
35
|
+
</EntityType>
|
36
|
+
<EntityType Name="VPNConnection">
|
37
|
+
<Key>
|
38
|
+
<PropertyRef Name="ID"/>
|
39
|
+
<PropertyRef Name="StampId"/>
|
40
|
+
</Key>
|
41
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
42
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
43
|
+
<Property Name="VMNetworkGatewayId" Type="Edm.Guid"/>
|
44
|
+
<Property Name="Name" Type="Edm.String"/>
|
45
|
+
<Property Name="Description" Type="Edm.String"/>
|
46
|
+
<Property Name="TargetVPNIPv4Address" Type="Edm.String"/>
|
47
|
+
<Property Name="TargetVPNIPv6Address" Type="Edm.String"/>
|
48
|
+
<Property Name="CloudVPNIPAddresses" Type="Collection(Edm.String)" Nullable="false"/>
|
49
|
+
<Property Name="AuthenticationMethod" Type="Edm.String"/>
|
50
|
+
<Property Name="RunAsAccountId" Type="Edm.Guid"/>
|
51
|
+
<Property Name="Status" Type="Edm.String"/>
|
52
|
+
<Property Name="LastConnectionError" Type="Edm.String"/>
|
53
|
+
<Property Name="LastConnectionErrorCode" Type="Edm.Int64"/>
|
54
|
+
<Property Name="MaximumBandwidthInboundKbps" Type="Edm.Decimal"/>
|
55
|
+
<Property Name="MaximumBandwidthOutboundKbps" Type="Edm.Decimal"/>
|
56
|
+
<Property Name="LastRead" Type="Edm.DateTime"/>
|
57
|
+
<NavigationProperty Name="NetworkRoutes" Relationship="VMM.VPNConnection_NetworkRoutes" ToRole="NetworkRoutes" FromRole="VPNConnection"/>
|
58
|
+
</EntityType>
|
59
|
+
<EntityType Name="PerformanceData">
|
60
|
+
<Key>
|
61
|
+
<PropertyRef Name="PerformanceCounter"/>
|
62
|
+
<PropertyRef Name="StampId"/>
|
63
|
+
<PropertyRef Name="TimeFrame"/>
|
64
|
+
<PropertyRef Name="VMId"/>
|
65
|
+
</Key>
|
66
|
+
<Property Name="PerformanceHistory" Type="Collection(Edm.Int32)" Nullable="false"/>
|
67
|
+
<Property Name="TimeSamples" Type="Collection(Edm.DateTime)" Nullable="false"/>
|
68
|
+
<Property Name="TimeFrame" Type="Edm.String" Nullable="false"/>
|
69
|
+
<Property Name="PerformanceCounter" Type="Edm.String" Nullable="false"/>
|
70
|
+
<Property Name="VMId" Type="Edm.Guid" Nullable="false"/>
|
71
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
72
|
+
</EntityType>
|
73
|
+
<EntityType Name="GuestInfo">
|
74
|
+
<Key>
|
75
|
+
<PropertyRef Name="StampId"/>
|
76
|
+
<PropertyRef Name="VMId"/>
|
77
|
+
</Key>
|
78
|
+
<Property Name="IPv4Addresses" Type="Edm.String"/>
|
79
|
+
<Property Name="IPv6Addresses" Type="Edm.String"/>
|
80
|
+
<Property Name="VMId" Type="Edm.Guid" Nullable="false"/>
|
81
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
82
|
+
</EntityType>
|
83
|
+
<EntityType Name="UserRole">
|
84
|
+
<Key>
|
85
|
+
<PropertyRef Name="ID"/>
|
86
|
+
</Key>
|
87
|
+
<Property Name="AddMember" Type="Collection(Edm.String)" Nullable="false"/>
|
88
|
+
<Property Name="AddResource" Type="Collection(VMM.UserRoleResource)" Nullable="false"/>
|
89
|
+
<Property Name="AddScope" Type="Collection(VMM.UserRoleScope)" Nullable="false"/>
|
90
|
+
<Property Name="AddCloudResourceExtension" Type="Collection(VMM.UserRoleCloudResourceExtension)" Nullable="false"/>
|
91
|
+
<Property Name="Description" Type="Edm.String"/>
|
92
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
93
|
+
<Property Name="Members" Type="Collection(Edm.String)" Nullable="false"/>
|
94
|
+
<Property Name="Name" Type="Edm.String"/>
|
95
|
+
<Property Name="ParentUserRoleId" Type="Edm.Guid"/>
|
96
|
+
<Property Name="Permission" Type="Collection(Edm.String)" Nullable="false"/>
|
97
|
+
<Property Name="CloudPermission" Type="Collection(VMM.UserRoleCloudPermission)" Nullable="false"/>
|
98
|
+
<Property Name="Profile" Type="Edm.String"/>
|
99
|
+
<Property Name="Quotas" Type="Collection(VMM.UserRoleScope)" Nullable="false"/>
|
100
|
+
<Property Name="RemoveMember" Type="Collection(Edm.String)" Nullable="false"/>
|
101
|
+
<Property Name="UserRoleProfile" Type="Edm.String"/>
|
102
|
+
<Property Name="PermissionInput" Type="Collection(VMM.UserRolePermission)" Nullable="false"/>
|
103
|
+
<Property Name="CloudPermissionInput" Type="Collection(VMM.UserRoleCloudPermissionInput)" Nullable="false"/>
|
104
|
+
<Property Name="RemoveResource" Type="Collection(VMM.UserRoleResource)" Nullable="false"/>
|
105
|
+
<Property Name="RemoveScope" Type="Collection(VMM.UserRoleScope)" Nullable="false"/>
|
106
|
+
<Property Name="RemoveCloudResourceExtension" Type="Collection(VMM.UserRoleCloudResourceExtension)" Nullable="false"/>
|
107
|
+
<Property Name="VMId" Type="Edm.Guid"/>
|
108
|
+
<Property Name="VMTemplateId" Type="Edm.Guid"/>
|
109
|
+
<Property Name="UserRoleDataPath" Type="Collection(VMM.UserRoleDataPath)" Nullable="false"/>
|
110
|
+
<Property Name="VMNetworkQuota" Type="Collection(VMM.VMNetworkQuota)" Nullable="false"/>
|
111
|
+
<NavigationProperty Name="Clouds" Relationship="VMM.UserRole_Clouds" ToRole="Clouds" FromRole="UserRole"/>
|
112
|
+
</EntityType>
|
113
|
+
<ComplexType Name="UserRoleResource">
|
114
|
+
<Property Name="Resource" Type="Edm.Guid"/>
|
115
|
+
<Property Name="StampId" Type="Edm.Guid"/>
|
116
|
+
<Property Name="ResourceType" Type="Edm.String"/>
|
117
|
+
</ComplexType>
|
118
|
+
<ComplexType Name="UserRoleScope">
|
119
|
+
<Property Name="Scope" Type="Edm.Guid"/>
|
120
|
+
<Property Name="StampId" Type="Edm.Guid"/>
|
121
|
+
<Property Name="ScopeType" Type="Edm.String"/>
|
122
|
+
<Property Name="RoleCPUCount" Type="Edm.Int32"/>
|
123
|
+
<Property Name="RoleMemoryMB" Type="Edm.Int32"/>
|
124
|
+
<Property Name="RoleStorageGB" Type="Edm.Int32"/>
|
125
|
+
<Property Name="RoleCustomQuotaCount" Type="Edm.Int32"/>
|
126
|
+
<Property Name="RoleVMCount" Type="Edm.Int32"/>
|
127
|
+
<Property Name="MemberCPUCount" Type="Edm.Int32"/>
|
128
|
+
<Property Name="MemberMemoryMB" Type="Edm.Int32"/>
|
129
|
+
<Property Name="MemberStorageGB" Type="Edm.Int32"/>
|
130
|
+
<Property Name="MemberCustomQuotaCount" Type="Edm.Int32"/>
|
131
|
+
<Property Name="MemberVMCount" Type="Edm.Int32"/>
|
132
|
+
</ComplexType>
|
133
|
+
<ComplexType Name="UserRoleCloudResourceExtension">
|
134
|
+
<Property Name="Name" Type="Edm.String"/>
|
135
|
+
<Property Name="Version" Type="Edm.String"/>
|
136
|
+
<Property Name="Publisher" Type="Edm.String"/>
|
137
|
+
<Property Name="StampId" Type="Edm.Guid"/>
|
138
|
+
<Property Name="ResourceType" Type="Edm.String"/>
|
139
|
+
</ComplexType>
|
140
|
+
<ComplexType Name="UserRoleCloudPermission">
|
141
|
+
<Property Name="StampId" Type="Edm.Guid"/>
|
142
|
+
<Property Name="CloudId" Type="Edm.Guid"/>
|
143
|
+
<Property Name="ExplicitPermission" Type="Collection(Edm.String)" Nullable="false"/>
|
144
|
+
<Property Name="EffectivePermission" Type="Collection(Edm.String)" Nullable="false"/>
|
145
|
+
</ComplexType>
|
146
|
+
<ComplexType Name="UserRolePermission">
|
147
|
+
<Property Name="StampId" Type="Edm.Guid"/>
|
148
|
+
<Property Name="Permission" Type="Collection(Edm.String)" Nullable="false"/>
|
149
|
+
</ComplexType>
|
150
|
+
<ComplexType Name="UserRoleCloudPermissionInput">
|
151
|
+
<Property Name="StampId" Type="Edm.Guid"/>
|
152
|
+
<Property Name="CloudId" Type="Edm.Guid"/>
|
153
|
+
<Property Name="ExplicitPermission" Type="Collection(Edm.String)" Nullable="false"/>
|
154
|
+
</ComplexType>
|
155
|
+
<ComplexType Name="UserRoleDataPath">
|
156
|
+
<Property Name="StampId" Type="Edm.Guid"/>
|
157
|
+
<Property Name="DataPath" Type="Edm.String"/>
|
158
|
+
</ComplexType>
|
159
|
+
<ComplexType Name="VMNetworkQuota">
|
160
|
+
<Property Name="StampId" Type="Edm.Guid"/>
|
161
|
+
<Property Name="VMNetworkMaximum" Type="Edm.Int32"/>
|
162
|
+
<Property Name="VMNetworkMaximumPerUser" Type="Edm.Int32"/>
|
163
|
+
<Property Name="VPNConnectionMaximum" Type="Edm.Int32"/>
|
164
|
+
<Property Name="VPNConnectionMaximumPerUser" Type="Edm.Int32"/>
|
165
|
+
<Property Name="VMNetworkVPNMaximumBandwidthInKbps" Type="Edm.Decimal"/>
|
166
|
+
<Property Name="VMNetworkVPNMaximumBandwidthOutKbps" Type="Edm.Decimal"/>
|
167
|
+
<Property Name="RemoveVMNetworkMaximum" Type="Edm.Boolean"/>
|
168
|
+
<Property Name="RemoveVMNetworkMaximumPerUser" Type="Edm.Boolean"/>
|
169
|
+
<Property Name="RemoveVPNConnectionMaximum" Type="Edm.Boolean"/>
|
170
|
+
<Property Name="RemoveVPNConnectionMaximumPerUser" Type="Edm.Boolean"/>
|
171
|
+
<Property Name="RemoveVMNetworkVPNMaximumBandwidthIn" Type="Edm.Boolean"/>
|
172
|
+
<Property Name="RemoveVMNetworkVPNMaximumBandwidthOut" Type="Edm.Boolean"/>
|
173
|
+
</ComplexType>
|
174
|
+
<EntityType Name="VirtualMachine">
|
175
|
+
<Key>
|
176
|
+
<PropertyRef Name="ID"/>
|
177
|
+
<PropertyRef Name="StampId"/>
|
178
|
+
</Key>
|
179
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
180
|
+
<Property Name="Agent" Type="Edm.Boolean"/>
|
181
|
+
<Property Name="AllocatedGPU" Type="Edm.String"/>
|
182
|
+
<Property Name="BackupEnabled" Type="Edm.Boolean"/>
|
183
|
+
<Property Name="BlockLiveMigrationIfHostBusy" Type="Edm.Boolean"/>
|
184
|
+
<Property Name="CanVMConnect" Type="Edm.Boolean"/>
|
185
|
+
<Property Name="CheckpointLocation" Type="Edm.String"/>
|
186
|
+
<Property Name="CloudId" Type="Edm.Guid"/>
|
187
|
+
<Property Name="ComputerName" Type="Edm.String"/>
|
188
|
+
<Property Name="ComputerTierId" Type="Edm.Guid"/>
|
189
|
+
<Property Name="CostCenter" Type="Edm.String"/>
|
190
|
+
<Property Name="CPUCount" Type="Edm.Byte"/>
|
191
|
+
<Property Name="CPUMax" Type="Edm.Int32"/>
|
192
|
+
<Property Name="CPUReserve" Type="Edm.Int32"/>
|
193
|
+
<Property Name="CPUType" Type="Edm.String"/>
|
194
|
+
<Property Name="CPUUtilization" Type="Edm.Int32"/>
|
195
|
+
<Property Name="CreationSource" Type="Edm.String"/>
|
196
|
+
<Property Name="CreationTime" Type="Edm.DateTime"/>
|
197
|
+
<Property Name="DataExchangeEnabled" Type="Edm.Boolean"/>
|
198
|
+
<Property Name="DelayStart" Type="Edm.Int32"/>
|
199
|
+
<Property Name="DeployPath" Type="Edm.String"/>
|
200
|
+
<Property Name="Description" Type="Edm.String"/>
|
201
|
+
<Property Name="DiskIO" Type="Edm.Int32"/>
|
202
|
+
<Property Name="Dismiss" Type="Edm.Boolean"/>
|
203
|
+
<Property Name="DynamicMemoryDemandMB" Type="Edm.Int32"/>
|
204
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
205
|
+
<Property Name="ExcludeFromPRO" Type="Edm.Boolean"/>
|
206
|
+
<Property Name="ExpectedCPUUtilization" Type="Edm.Int32"/>
|
207
|
+
<Property Name="FailedJobID" Type="Edm.Guid"/>
|
208
|
+
<Property Name="HasPassthroughDisk" Type="Edm.Boolean"/>
|
209
|
+
<Property Name="HasSavedState" Type="Edm.Boolean"/>
|
210
|
+
<Property Name="HasVMAdditions" Type="Edm.Boolean"/>
|
211
|
+
<Property Name="HeartbeatEnabled" Type="Edm.Boolean"/>
|
212
|
+
<Property Name="HighlyAvailable" Type="Edm.Boolean"/>
|
213
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
214
|
+
<Property Name="IsFaultTolerant" Type="Edm.Boolean"/>
|
215
|
+
<Property Name="IsHighlyAvailable" Type="Edm.Boolean"/>
|
216
|
+
<Property Name="IsUndergoingLiveMigration" Type="Edm.Boolean"/>
|
217
|
+
<Property Name="LastRestoredCheckpointId" Type="Edm.Guid"/>
|
218
|
+
<Property Name="LibraryGroup" Type="Edm.String"/>
|
219
|
+
<Property Name="LimitCPUForMigration" Type="Edm.Boolean"/>
|
220
|
+
<Property Name="LimitCPUFunctionality" Type="Edm.Boolean"/>
|
221
|
+
<Property Name="VMNetworkAssignments" Type="Collection(VMM.VMNetworkAssignment)" Nullable="false"/>
|
222
|
+
<Property Name="Location" Type="Edm.String"/>
|
223
|
+
<Property Name="MarkedAsTemplate" Type="Edm.Boolean"/>
|
224
|
+
<Property Name="Memory" Type="Edm.Int32"/>
|
225
|
+
<Property Name="MemoryAssignedMB" Type="Edm.Int32"/>
|
226
|
+
<Property Name="MemoryAvailablePercentage" Type="Edm.Int16"/>
|
227
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
228
|
+
<Property Name="MostRecentTaskId" Type="Edm.Guid"/>
|
229
|
+
<Property Name="Name" Type="Edm.String"/>
|
230
|
+
<Property Name="NetworkUtilization" Type="Edm.Int32"/>
|
231
|
+
<Property Name="NumLock" Type="Edm.Boolean"/>
|
232
|
+
<Property Name="OperatingSystem" Type="Edm.String"/>
|
233
|
+
<Property Name="OperatingSystemInstance" Type="VMM.OperatingSystem"/>
|
234
|
+
<Property Name="OperatingSystemShutdownEnabled" Type="Edm.Boolean"/>
|
235
|
+
<Property Name="Operation" Type="Edm.String"/>
|
236
|
+
<Property Name="Owner" Type="VMM.UserAndRole"/>
|
237
|
+
<Property Name="GrantedToList" Type="Collection(VMM.UserAndRole)" Nullable="false"/>
|
238
|
+
<Property Name="Path" Type="Edm.String"/>
|
239
|
+
<Property Name="PerfCPUUtilization" Type="Edm.Int32"/>
|
240
|
+
<Property Name="PerfDiskBytesRead" Type="Edm.Int64"/>
|
241
|
+
<Property Name="PerfDiskBytesWrite" Type="Edm.Int64"/>
|
242
|
+
<Property Name="PerfNetworkBytesRead" Type="Edm.Int64"/>
|
243
|
+
<Property Name="PerfNetworkBytesWrite" Type="Edm.Int64"/>
|
244
|
+
<Property Name="CPURelativeWeight" Type="Edm.Int32"/>
|
245
|
+
<Property Name="Retry" Type="Edm.Boolean"/>
|
246
|
+
<Property Name="RunGuestAccount" Type="Edm.String"/>
|
247
|
+
<Property Name="ServiceDeploymentErrorMessage" Type="Edm.String"/>
|
248
|
+
<Property Name="ServiceId" Type="Edm.Guid"/>
|
249
|
+
<Property Name="SharePath" Type="Edm.String"/>
|
250
|
+
<Property Name="SourceObjectType" Type="Edm.String"/>
|
251
|
+
<Property Name="StartAction" Type="Edm.String"/>
|
252
|
+
<Property Name="StartVM" Type="Edm.Boolean"/>
|
253
|
+
<Property Name="Status" Type="Edm.String"/>
|
254
|
+
<Property Name="StatusString" Type="Edm.String"/>
|
255
|
+
<Property Name="StopAction" Type="Edm.String"/>
|
256
|
+
<Property Name="Tag" Type="Edm.String"/>
|
257
|
+
<Property Name="TimeSynchronizationEnabled" Type="Edm.Boolean"/>
|
258
|
+
<Property Name="TotalSize" Type="Edm.Int64"/>
|
259
|
+
<Property Name="Undo" Type="Edm.Boolean"/>
|
260
|
+
<Property Name="UndoDisksEnabled" Type="Edm.Boolean"/>
|
261
|
+
<Property Name="UpgradeDomain" Type="Edm.Int32"/>
|
262
|
+
<Property Name="UseCluster" Type="Edm.Boolean"/>
|
263
|
+
<Property Name="UseLAN" Type="Edm.Boolean"/>
|
264
|
+
<Property Name="VirtualHardDiskId" Type="Edm.Guid"/>
|
265
|
+
<Property Name="VirtualizationPlatform" Type="Edm.String"/>
|
266
|
+
<Property Name="CapabilityProfile" Type="Edm.String"/>
|
267
|
+
<Property Name="VMBaseConfigurationId" Type="Edm.Guid"/>
|
268
|
+
<Property Name="VMConnection" Type="Edm.Stream" Nullable="false"/>
|
269
|
+
<Property Name="VMConfigResource" Type="Edm.String"/>
|
270
|
+
<Property Name="VMCPath" Type="Edm.String"/>
|
271
|
+
<Property Name="VMHostName" Type="Edm.String"/>
|
272
|
+
<Property Name="VMId" Type="Edm.Guid"/>
|
273
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
274
|
+
<Property Name="VMResource" Type="Edm.String"/>
|
275
|
+
<Property Name="VMResourceGroup" Type="Edm.String"/>
|
276
|
+
<Property Name="VirtualMachineState" Type="Edm.String"/>
|
277
|
+
<Property Name="VMTemplateId" Type="Edm.Guid"/>
|
278
|
+
<Property Name="HardwareProfileId" Type="Edm.Guid"/>
|
279
|
+
<Property Name="BlockDynamicOptimization" Type="Edm.Boolean"/>
|
280
|
+
<Property Name="CPULimitForMigration" Type="Edm.Boolean"/>
|
281
|
+
<Property Name="CPULimitFunctionality" Type="Edm.Boolean"/>
|
282
|
+
<Property Name="Domain" Type="Edm.String"/>
|
283
|
+
<Property Name="DynamicMemoryBufferPercentage" Type="Edm.Int32"/>
|
284
|
+
<Property Name="DynamicMemoryEnabled" Type="Edm.Boolean"/>
|
285
|
+
<Property Name="DynamicMemoryMaximumMB" Type="Edm.Int32"/>
|
286
|
+
<Property Name="FullName" Type="Edm.String"/>
|
287
|
+
<Property Name="MemoryWeight" Type="Edm.Int32"/>
|
288
|
+
<Property Name="OrganizationName" Type="Edm.String"/>
|
289
|
+
<Property Name="DelayStartSeconds" Type="Edm.Int32"/>
|
290
|
+
<Property Name="ProductKey" Type="Edm.String"/>
|
291
|
+
<Property Name="WorkGroup" Type="Edm.String"/>
|
292
|
+
<Property Name="TimeZone" Type="Edm.Int32"/>
|
293
|
+
<Property Name="RunAsAccountUserName" Type="Edm.String"/>
|
294
|
+
<Property Name="UserName" Type="Edm.String"/>
|
295
|
+
<Property Name="Password" Type="Edm.String"/>
|
296
|
+
<Property Name="LocalAdminRunAsAccountName" Type="Edm.String"/>
|
297
|
+
<Property Name="LocalAdminUserName" Type="Edm.String"/>
|
298
|
+
<Property Name="LocalAdminPassword" Type="Edm.String"/>
|
299
|
+
<Property Name="LinuxDomainName" Type="Edm.String"/>
|
300
|
+
<Property Name="LinuxAdministratorSSHKey" Type="Edm.String"/>
|
301
|
+
<Property Name="LinuxAdministratorSSHKeyString" Type="Edm.String"/>
|
302
|
+
<Property Name="CloudVMRoleName" Type="Edm.String"/>
|
303
|
+
<Property Name="Generation" Type="Edm.Int32"/>
|
304
|
+
<Property Name="DeploymentErrorInfo" Type="VMM.ErrorInfo"/>
|
305
|
+
<Property Name="NewVirtualNetworkAdapterInput" Type="Collection(VMM.NewVMVirtualNetworkAdapterInput)" Nullable="false"/>
|
306
|
+
<Property Name="IsRecoveryVM" Type="Edm.Boolean"/>
|
307
|
+
<NavigationProperty Name="Cloud" Relationship="VMM.VirtualMachine_Cloud" ToRole="Cloud" FromRole="VirtualMachine"/>
|
308
|
+
<NavigationProperty Name="MostRecentTask" Relationship="VMM.VirtualMachine_MostRecentTask" ToRole="MostRecentTask" FromRole="VirtualMachine"/>
|
309
|
+
<NavigationProperty Name="FailedJob" Relationship="VMM.VirtualMachine_FailedJob" ToRole="FailedJob" FromRole="VirtualMachine"/>
|
310
|
+
<NavigationProperty Name="VirtualNetworkAdapters" Relationship="VMM.VirtualMachine_VirtualNetworkAdapters" ToRole="VirtualNetworkAdapters" FromRole="VirtualMachine"/>
|
311
|
+
<NavigationProperty Name="VMCheckpoints" Relationship="VMM.VirtualMachine_VMCheckpoints" ToRole="VMCheckpoints" FromRole="VirtualMachine"/>
|
312
|
+
<NavigationProperty Name="VirtualSCSIAdapters" Relationship="VMM.VirtualMachine_VirtualSCSIAdapters" ToRole="VirtualSCSIAdapters" FromRole="VirtualMachine"/>
|
313
|
+
<NavigationProperty Name="VirtualHardDisks" Relationship="VMM.VirtualMachine_VirtualHardDisks" ToRole="VirtualHardDisks" FromRole="VirtualMachine"/>
|
314
|
+
<NavigationProperty Name="VirtualDVDDrives" Relationship="VMM.VirtualMachine_VirtualDVDDrives" ToRole="VirtualDVDDrives" FromRole="VirtualMachine"/>
|
315
|
+
<NavigationProperty Name="VirtualDiskDrives" Relationship="VMM.VirtualMachine_VirtualDiskDrives" ToRole="VirtualDiskDrives" FromRole="VirtualMachine"/>
|
316
|
+
</EntityType>
|
317
|
+
<ComplexType Name="VMNetworkAssignment">
|
318
|
+
<Property Name="VirtualNetworkAdapterID" Type="Edm.Guid"/>
|
319
|
+
<Property Name="VMNetworkName" Type="Edm.String"/>
|
320
|
+
</ComplexType>
|
321
|
+
<ComplexType Name="OperatingSystem">
|
322
|
+
<Property Name="Name" Type="Edm.String"/>
|
323
|
+
<Property Name="Description" Type="Edm.String"/>
|
324
|
+
<Property Name="Version" Type="Edm.String"/>
|
325
|
+
<Property Name="Architecture" Type="Edm.String"/>
|
326
|
+
<Property Name="Edition" Type="Edm.String"/>
|
327
|
+
<Property Name="OSType" Type="Edm.String"/>
|
328
|
+
<Property Name="ProductType" Type="Edm.String"/>
|
329
|
+
</ComplexType>
|
330
|
+
<ComplexType Name="UserAndRole">
|
331
|
+
<Property Name="UserName" Type="Edm.String"/>
|
332
|
+
<Property Name="RoleName" Type="Edm.String"/>
|
333
|
+
<Property Name="RoleID" Type="Edm.Guid"/>
|
334
|
+
</ComplexType>
|
335
|
+
<ComplexType Name="ErrorInfo">
|
336
|
+
<Property Name="CloudProblem" Type="Edm.String"/>
|
337
|
+
<Property Name="Code" Type="Edm.String"/>
|
338
|
+
<Property Name="DetailedCode" Type="Edm.Int32"/>
|
339
|
+
<Property Name="DetailedErrorCode" Type="Edm.String"/>
|
340
|
+
<Property Name="DetailedSource" Type="Edm.String"/>
|
341
|
+
<Property Name="DisplayableErrorCode" Type="Edm.Int64"/>
|
342
|
+
<Property Name="ErrorCodeString" Type="Edm.String"/>
|
343
|
+
<Property Name="ErrorType" Type="Edm.String"/>
|
344
|
+
<Property Name="ExceptionDetails" Type="Edm.String"/>
|
345
|
+
<Property Name="IsConditionallyTerminating" Type="Edm.Boolean"/>
|
346
|
+
<Property Name="IsDeploymentBlocker" Type="Edm.Boolean"/>
|
347
|
+
<Property Name="IsMomAlert" Type="Edm.Boolean"/>
|
348
|
+
<Property Name="IsSuccess" Type="Edm.Boolean"/>
|
349
|
+
<Property Name="IsTerminating" Type="Edm.Boolean"/>
|
350
|
+
<Property Name="MessageParameters" Type="Edm.String"/>
|
351
|
+
<Property Name="MomAlertSeverity" Type="Edm.String"/>
|
352
|
+
<Property Name="Problem" Type="Edm.String"/>
|
353
|
+
<Property Name="RecommendedAction" Type="Edm.String"/>
|
354
|
+
<Property Name="RecommendedActionCLI" Type="Edm.String"/>
|
355
|
+
<Property Name="ShowDetailedError" Type="Edm.Boolean"/>
|
356
|
+
</ComplexType>
|
357
|
+
<ComplexType Name="NewVMVirtualNetworkAdapterInput">
|
358
|
+
<Property Name="VMNetworkName" Type="Edm.String"/>
|
359
|
+
<Property Name="MACAddressType" Type="Edm.String"/>
|
360
|
+
<Property Name="MACAddress" Type="Edm.String"/>
|
361
|
+
<Property Name="IPv4AddressType" Type="Edm.String"/>
|
362
|
+
<Property Name="IPv6AddressType" Type="Edm.String"/>
|
363
|
+
<Property Name="VLanEnabled" Type="Edm.Boolean"/>
|
364
|
+
<Property Name="VLanId" Type="Edm.Int16"/>
|
365
|
+
</ComplexType>
|
366
|
+
<EntityType Name="VirtualDVDDrive">
|
367
|
+
<Key>
|
368
|
+
<PropertyRef Name="ID"/>
|
369
|
+
<PropertyRef Name="StampId"/>
|
370
|
+
</Key>
|
371
|
+
<Property Name="Accessibility" Type="Edm.String"/>
|
372
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
373
|
+
<Property Name="Bus" Type="Edm.Byte"/>
|
374
|
+
<Property Name="BusType" Type="Edm.String"/>
|
375
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
376
|
+
<Property Name="HostDrive" Type="Edm.String"/>
|
377
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
378
|
+
<Property Name="ISOId" Type="Edm.Guid"/>
|
379
|
+
<Property Name="ISOLinked" Type="Edm.Boolean"/>
|
380
|
+
<Property Name="JobGroupId" Type="Edm.Guid"/>
|
381
|
+
<Property Name="LUN" Type="Edm.Byte"/>
|
382
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
383
|
+
<Property Name="Name" Type="Edm.String"/>
|
384
|
+
<Property Name="Size" Type="Edm.Int64"/>
|
385
|
+
<Property Name="TemplateId" Type="Edm.Guid"/>
|
386
|
+
<Property Name="VMId" Type="Edm.Guid"/>
|
387
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
388
|
+
<Property Name="ChildObjectIDs" Type="Collection(Edm.Guid)" Nullable="false"/>
|
389
|
+
<Property Name="Connection" Type="Edm.String"/>
|
390
|
+
<Property Name="Description" Type="Edm.String"/>
|
391
|
+
<NavigationProperty Name="ISO" Relationship="VMM.VirtualDVDDrive_ISO" ToRole="ISO" FromRole="VirtualDVDDrive"/>
|
392
|
+
</EntityType>
|
393
|
+
<EntityType Name="VirtualHardDisk">
|
394
|
+
<Key>
|
395
|
+
<PropertyRef Name="ID"/>
|
396
|
+
<PropertyRef Name="StampId"/>
|
397
|
+
</Key>
|
398
|
+
<Property Name="Accessibility" Type="Edm.String"/>
|
399
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
400
|
+
<Property Name="Description" Type="Edm.String"/>
|
401
|
+
<Property Name="Directory" Type="Edm.String"/>
|
402
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
403
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
404
|
+
<Property Name="JobGroupId" Type="Edm.Guid"/>
|
405
|
+
<Property Name="MaximumSize" Type="Edm.Int64"/>
|
406
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
407
|
+
<Property Name="Name" Type="Edm.String"/>
|
408
|
+
<Property Name="Owner" Type="VMM.UserAndRole"/>
|
409
|
+
<Property Name="OwnerSid" Type="Edm.String"/>
|
410
|
+
<Property Name="ParentDiskId" Type="Edm.Guid"/>
|
411
|
+
<Property Name="SharePath" Type="Edm.String"/>
|
412
|
+
<Property Name="Size" Type="Edm.Int64"/>
|
413
|
+
<Property Name="State" Type="Edm.String"/>
|
414
|
+
<Property Name="VHDType" Type="Edm.String"/>
|
415
|
+
<Property Name="VMId" Type="Edm.Guid"/>
|
416
|
+
<Property Name="TemplateId" Type="Edm.Guid"/>
|
417
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
418
|
+
<Property Name="FamilyName" Type="Edm.String"/>
|
419
|
+
<Property Name="Release" Type="Edm.String"/>
|
420
|
+
<Property Name="CloudId" Type="Edm.Guid"/>
|
421
|
+
<Property Name="HostVolumeId" Type="Edm.Guid"/>
|
422
|
+
<Property Name="IsOrphaned" Type="Edm.Boolean"/>
|
423
|
+
<Property Name="IsResourceGroup" Type="Edm.Boolean"/>
|
424
|
+
<Property Name="LibraryGroup" Type="Edm.String"/>
|
425
|
+
<Property Name="LibraryShareId" Type="Edm.Guid"/>
|
426
|
+
<Property Name="Location" Type="Edm.String"/>
|
427
|
+
<Property Name="Namespace" Type="Edm.String"/>
|
428
|
+
<Property Name="ReleaseTime" Type="Edm.DateTime"/>
|
429
|
+
<Property Name="SANCopyCapable" Type="Edm.Boolean"/>
|
430
|
+
<Property Name="Type" Type="Edm.String"/>
|
431
|
+
<Property Name="VirtualizationPlatform" Type="Edm.String"/>
|
432
|
+
<Property Name="OperatingSystem" Type="Edm.String"/>
|
433
|
+
<Property Name="OperatingSystemInstance" Type="VMM.OperatingSystem"/>
|
434
|
+
<Property Name="OperatingSystemId" Type="Edm.Guid"/>
|
435
|
+
<Property Name="Tag" Type="Collection(Edm.String)" Nullable="false"/>
|
436
|
+
</EntityType>
|
437
|
+
<EntityType Name="VMTemplate">
|
438
|
+
<Key>
|
439
|
+
<PropertyRef Name="ID"/>
|
440
|
+
<PropertyRef Name="StampId"/>
|
441
|
+
</Key>
|
442
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
443
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
444
|
+
<Property Name="AccessedTime" Type="Edm.DateTime"/>
|
445
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
446
|
+
<Property Name="Admin" Type="Edm.String"/>
|
447
|
+
<Property Name="AdminPasswordHasValue" Type="Edm.Boolean"/>
|
448
|
+
<Property Name="ComputerName" Type="Edm.String"/>
|
449
|
+
<Property Name="CPUCount" Type="Edm.Byte"/>
|
450
|
+
<Property Name="CPUMax" Type="Edm.Int32"/>
|
451
|
+
<Property Name="CPUReserve" Type="Edm.Int32"/>
|
452
|
+
<Property Name="CPUType" Type="Edm.String"/>
|
453
|
+
<Property Name="CreationTime" Type="Edm.DateTime"/>
|
454
|
+
<Property Name="DiskIO" Type="Edm.Int32"/>
|
455
|
+
<Property Name="DomainAdmin" Type="Edm.String"/>
|
456
|
+
<Property Name="DomainAdminPasswordHasValue" Type="Edm.Boolean"/>
|
457
|
+
<Property Name="ExpectedCPUUtilization" Type="Edm.Int32"/>
|
458
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
459
|
+
<Property Name="FullName" Type="Edm.String"/>
|
460
|
+
<Property Name="HasVMAdditions" Type="Edm.Boolean"/>
|
461
|
+
<Property Name="IsHighlyAvailable" Type="Edm.Boolean"/>
|
462
|
+
<Property Name="JoinDomain" Type="Edm.String"/>
|
463
|
+
<Property Name="JoinWorkgroup" Type="Edm.String"/>
|
464
|
+
<Property Name="LibraryGroup" Type="Edm.String"/>
|
465
|
+
<Property Name="LimitCPUForMigration" Type="Edm.Boolean"/>
|
466
|
+
<Property Name="LimitCPUFunctionality" Type="Edm.Boolean"/>
|
467
|
+
<Property Name="Location" Type="Edm.String"/>
|
468
|
+
<Property Name="Memory" Type="Edm.Int32"/>
|
469
|
+
<Property Name="MergeAnswerFile" Type="Edm.Boolean"/>
|
470
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
471
|
+
<Property Name="Name" Type="Edm.String"/>
|
472
|
+
<Property Name="NetworkUtilization" Type="Edm.Int32"/>
|
473
|
+
<Property Name="OperatingSystem" Type="Edm.String"/>
|
474
|
+
<Property Name="OperatingSystemInstance" Type="VMM.OperatingSystem"/>
|
475
|
+
<Property Name="OSType" Type="Edm.String"/>
|
476
|
+
<Property Name="OrgName" Type="Edm.String"/>
|
477
|
+
<Property Name="Owner" Type="VMM.UserAndRole"/>
|
478
|
+
<Property Name="GrantedToList" Type="Collection(VMM.UserAndRole)" Nullable="false"/>
|
479
|
+
<Property Name="QuotaPoint" Type="Edm.Int32"/>
|
480
|
+
<Property Name="ProductKeyHasValue" Type="Edm.Boolean"/>
|
481
|
+
<Property Name="RelativeWeight" Type="Edm.Int32"/>
|
482
|
+
<Property Name="ShareSCSIBus" Type="Edm.Boolean"/>
|
483
|
+
<Property Name="Tag" Type="Edm.String"/>
|
484
|
+
<Property Name="TimeZone" Type="Edm.Int32"/>
|
485
|
+
<Property Name="TotalVHDCapacity" Type="Edm.Int64"/>
|
486
|
+
<Property Name="UndoDisksEnabled" Type="Edm.Boolean"/>
|
487
|
+
<Property Name="UseHardwareAssistedVirtualization" Type="Edm.Boolean"/>
|
488
|
+
<Property Name="Accessibility" Type="Edm.String"/>
|
489
|
+
<Property Name="CostCenter" Type="Edm.String"/>
|
490
|
+
<Property Name="Description" Type="Edm.String"/>
|
491
|
+
<Property Name="IsTagEmpty" Type="Edm.Boolean"/>
|
492
|
+
<Property Name="NicCount" Type="Edm.Int32"/>
|
493
|
+
<Property Name="NumLockEnabled" Type="Edm.Boolean"/>
|
494
|
+
<Property Name="VMAddition" Type="Edm.String"/>
|
495
|
+
<Property Name="IsCustomizable" Type="Edm.Boolean"/>
|
496
|
+
<Property Name="DomainAdminPasswordIsServiceSetting" Type="Edm.Boolean"/>
|
497
|
+
<Property Name="SANCopyCapable" Type="Edm.Boolean"/>
|
498
|
+
<Property Name="IsTemporaryTemplate" Type="Edm.Boolean"/>
|
499
|
+
<Property Name="VMTemplateId" Type="Edm.Guid"/>
|
500
|
+
<Property Name="VirtualHardDiskId" Type="Edm.Guid"/>
|
501
|
+
<Property Name="VMId" Type="Edm.Guid"/>
|
502
|
+
<Property Name="SharePath" Type="Edm.String"/>
|
503
|
+
<Property Name="ApplicationProfileId" Type="Edm.Guid"/>
|
504
|
+
<Property Name="CloudID" Type="Edm.Guid"/>
|
505
|
+
<Property Name="DynamicMemoryBufferPercentage" Type="Edm.Int16"/>
|
506
|
+
<Property Name="DynamicMemoryEnabled" Type="Edm.Boolean"/>
|
507
|
+
<Property Name="DynamicMemoryMaximumMB" Type="Edm.Int32"/>
|
508
|
+
<Property Name="MemoryWeight" Type="Edm.Int16"/>
|
509
|
+
<Property Name="DynamicMemoryPreferredBufferPercentage" Type="Edm.Int16"/>
|
510
|
+
<Property Name="SQLProfileId" Type="Edm.Guid"/>
|
511
|
+
<Property Name="VirtualFloppyDriveId" Type="Edm.Guid"/>
|
512
|
+
<Property Name="BootOrder" Type="Collection(Edm.String)" Nullable="false"/>
|
513
|
+
<Property Name="CustomProperties" Type="Collection(Edm.String)" Nullable="false"/>
|
514
|
+
<Property Name="GuiRunOnceCommands" Type="Collection(Edm.String)" Nullable="false"/>
|
515
|
+
<Property Name="ServerFeatures" Type="Collection(Edm.String)" Nullable="false"/>
|
516
|
+
<Property Name="Status" Type="Edm.String"/>
|
517
|
+
<Property Name="VirtualizationPlatform" Type="Edm.String"/>
|
518
|
+
<Property Name="CapabilityProfile" Type="Edm.String"/>
|
519
|
+
<Property Name="AutoLogonCount" Type="Edm.Int32"/>
|
520
|
+
<Property Name="DomainJoinOrganizationalUnit" Type="Edm.String"/>
|
521
|
+
<Property Name="SANStatus" Type="Collection(Edm.String)" Nullable="false"/>
|
522
|
+
<Property Name="Generation" Type="Edm.Int32"/>
|
523
|
+
<NavigationProperty Name="VirtualNetworkAdapters" Relationship="VMM.VMTemplate_VirtualNetworkAdapters" ToRole="VirtualNetworkAdapters" FromRole="VMTemplate"/>
|
524
|
+
<NavigationProperty Name="VirtualSCSIAdapters" Relationship="VMM.VMTemplate_VirtualSCSIAdapters" ToRole="VirtualSCSIAdapters" FromRole="VMTemplate"/>
|
525
|
+
<NavigationProperty Name="VirtualHardDisks" Relationship="VMM.VMTemplate_VirtualHardDisks" ToRole="VirtualHardDisks" FromRole="VMTemplate"/>
|
526
|
+
<NavigationProperty Name="VirtualDVDDrives" Relationship="VMM.VMTemplate_VirtualDVDDrives" ToRole="VirtualDVDDrives" FromRole="VMTemplate"/>
|
527
|
+
<NavigationProperty Name="VirtualDiskDrives" Relationship="VMM.VMTemplate_VirtualDiskDrives" ToRole="VirtualDiskDrives" FromRole="VMTemplate"/>
|
528
|
+
</EntityType>
|
529
|
+
<EntityType Name="VirtualNetworkAdapter">
|
530
|
+
<Key>
|
531
|
+
<PropertyRef Name="ID"/>
|
532
|
+
<PropertyRef Name="StampId"/>
|
533
|
+
</Key>
|
534
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
535
|
+
<Property Name="Name" Type="Edm.String"/>
|
536
|
+
<Property Name="VMwarePortGroup" Type="Edm.String"/>
|
537
|
+
<Property Name="EthernetAddressType" Type="Edm.String"/>
|
538
|
+
<Property Name="PhysicalAddressType" Type="Edm.String"/>
|
539
|
+
<Property Name="EthernetAddress" Type="Edm.String"/>
|
540
|
+
<Property Name="PhysicalAddress" Type="Edm.String"/>
|
541
|
+
<Property Name="VirtualNetworkAdapterType" Type="Edm.String"/>
|
542
|
+
<Property Name="Location" Type="Edm.String"/>
|
543
|
+
<Property Name="Tag" Type="Edm.String"/>
|
544
|
+
<Property Name="Description" Type="Edm.String"/>
|
545
|
+
<Property Name="VMNetworkId" Type="Edm.Guid"/>
|
546
|
+
<Property Name="VMNetworkName" Type="Edm.String"/>
|
547
|
+
<Property Name="VMSubnetId" Type="Edm.Guid"/>
|
548
|
+
<Property Name="TemplateId" Type="Edm.Guid"/>
|
549
|
+
<Property Name="VMId" Type="Edm.Guid"/>
|
550
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
551
|
+
<Property Name="MACAddressesSpoofingEnabled" Type="Edm.Boolean"/>
|
552
|
+
<Property Name="SlotId" Type="Edm.Int32"/>
|
553
|
+
<Property Name="VLanEnabled" Type="Edm.Boolean"/>
|
554
|
+
<Property Name="VLanId" Type="Edm.Int16"/>
|
555
|
+
<Property Name="VMNetworkOptimizationEnabled" Type="Edm.Boolean"/>
|
556
|
+
<Property Name="VmwAdapterIndex" Type="Edm.Int32"/>
|
557
|
+
<Property Name="Accessibility" Type="Edm.String"/>
|
558
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
559
|
+
<Property Name="ChildObjectIDs" Type="Collection(Edm.Guid)" Nullable="false"/>
|
560
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
561
|
+
<Property Name="IPv4AddressType" Type="Edm.String"/>
|
562
|
+
<Property Name="IPv6AddressType" Type="Edm.String"/>
|
563
|
+
<Property Name="IPv4Addresses" Type="Collection(Edm.String)" Nullable="false"/>
|
564
|
+
<Property Name="IPv6Addresses" Type="Collection(Edm.String)" Nullable="false"/>
|
565
|
+
<Property Name="MACAddress" Type="Edm.String"/>
|
566
|
+
<Property Name="MACAddressesSpoolingEnabled" Type="Edm.Boolean"/>
|
567
|
+
<Property Name="MACAddressSpoofingEnabled" Type="Edm.Boolean"/>
|
568
|
+
<Property Name="EnableMACAddressSpoofing" Type="Edm.Boolean"/>
|
569
|
+
<Property Name="MACAddressType" Type="Edm.String"/>
|
570
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
571
|
+
<Property Name="ParentId" Type="Edm.Guid"/>
|
572
|
+
<Property Name="RequiredBandwidth" Type="Edm.String"/>
|
573
|
+
<Property Name="IsSynthetic" Type="Edm.Boolean"/>
|
574
|
+
</EntityType>
|
575
|
+
<EntityType Name="VirtualSCSIAdapter">
|
576
|
+
<Key>
|
577
|
+
<PropertyRef Name="ID"/>
|
578
|
+
<PropertyRef Name="StampId"/>
|
579
|
+
</Key>
|
580
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
581
|
+
<Property Name="Name" Type="Edm.String"/>
|
582
|
+
<Property Name="AdapterID" Type="Edm.Byte"/>
|
583
|
+
<Property Name="Bus" Type="Edm.Byte"/>
|
584
|
+
<Property Name="Shared" Type="Edm.Boolean"/>
|
585
|
+
<Property Name="TemplateId" Type="Edm.Guid"/>
|
586
|
+
<Property Name="VMId" Type="Edm.Guid"/>
|
587
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
588
|
+
<Property Name="SCSIControllerType" Type="Edm.String"/>
|
589
|
+
<Property Name="Accessibility" Type="Edm.String"/>
|
590
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
591
|
+
<Property Name="Description" Type="Edm.String"/>
|
592
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
593
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
594
|
+
</EntityType>
|
595
|
+
<EntityType Name="ISO">
|
596
|
+
<Key>
|
597
|
+
<PropertyRef Name="ID"/>
|
598
|
+
<PropertyRef Name="StampId"/>
|
599
|
+
</Key>
|
600
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
601
|
+
<Property Name="State" Type="Edm.String"/>
|
602
|
+
<Property Name="SharePath" Type="Edm.String"/>
|
603
|
+
<Property Name="Directory" Type="Edm.String"/>
|
604
|
+
<Property Name="Size" Type="Edm.Int64"/>
|
605
|
+
<Property Name="LibraryGroup" Type="Edm.String"/>
|
606
|
+
<Property Name="Owner" Type="VMM.UserAndRole"/>
|
607
|
+
<Property Name="OwnerSid" Type="Edm.String"/>
|
608
|
+
<Property Name="Accessibility" Type="Edm.String"/>
|
609
|
+
<Property Name="Name" Type="Edm.String"/>
|
610
|
+
<Property Name="Description" Type="Edm.String"/>
|
611
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
612
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
613
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
614
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
615
|
+
<Property Name="FamilyName" Type="Edm.String"/>
|
616
|
+
<Property Name="HostVolumeId" Type="Edm.Guid"/>
|
617
|
+
<Property Name="IsOrphaned" Type="Edm.Boolean"/>
|
618
|
+
<Property Name="LibraryShareId" Type="Edm.Guid"/>
|
619
|
+
<Property Name="Namespace" Type="Edm.String"/>
|
620
|
+
<Property Name="CloudId" Type="Edm.Guid"/>
|
621
|
+
<Property Name="Release" Type="Edm.String"/>
|
622
|
+
<NavigationProperty Name="LibraryShare" Relationship="VMM.ISO_LibraryShare" ToRole="LibraryShare" FromRole="ISO"/>
|
623
|
+
</EntityType>
|
624
|
+
<EntityType Name="LogicalNetwork">
|
625
|
+
<Key>
|
626
|
+
<PropertyRef Name="ID"/>
|
627
|
+
<PropertyRef Name="StampId"/>
|
628
|
+
</Key>
|
629
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
630
|
+
<Property Name="Description" Type="Edm.String"/>
|
631
|
+
<Property Name="Name" Type="Edm.String"/>
|
632
|
+
<Property Name="NetworkVirtualizationEnabled" Type="Edm.Boolean"/>
|
633
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
634
|
+
<Property Name="CloudId" Type="Edm.Guid"/>
|
635
|
+
</EntityType>
|
636
|
+
<EntityType Name="Job">
|
637
|
+
<Key>
|
638
|
+
<PropertyRef Name="ID"/>
|
639
|
+
<PropertyRef Name="StampId"/>
|
640
|
+
</Key>
|
641
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
642
|
+
<Property Name="Name" Type="Edm.String"/>
|
643
|
+
<Property Name="CurrentStepId" Type="Edm.Guid"/>
|
644
|
+
<Property Name="RootStepId" Type="Edm.Guid"/>
|
645
|
+
<Property Name="CmdletName" Type="Edm.String"/>
|
646
|
+
<Property Name="EndTime" Type="Edm.DateTime"/>
|
647
|
+
<Property Name="IsCompleted" Type="Edm.Boolean"/>
|
648
|
+
<Property Name="IsRestartable" Type="Edm.Boolean"/>
|
649
|
+
<Property Name="IsStoppable" Type="Edm.Boolean"/>
|
650
|
+
<Property Name="IsVisible" Type="Edm.Boolean"/>
|
651
|
+
<Property Name="Owner" Type="Edm.String"/>
|
652
|
+
<Property Name="OwnerSID" Type="Edm.String"/>
|
653
|
+
<Property Name="ProgressValue" Type="Edm.Int32"/>
|
654
|
+
<Property Name="Progress" Type="Edm.String"/>
|
655
|
+
<Property Name="ResultObjectTypeName" Type="Edm.String"/>
|
656
|
+
<Property Name="ResultName" Type="Edm.String"/>
|
657
|
+
<Property Name="Source" Type="Edm.String"/>
|
658
|
+
<Property Name="StartTime" Type="Edm.DateTime"/>
|
659
|
+
<Property Name="Status" Type="Edm.String"/>
|
660
|
+
<Property Name="StatusString" Type="Edm.String"/>
|
661
|
+
<Property Name="Target" Type="Edm.String"/>
|
662
|
+
<Property Name="TargetObjectID" Type="Edm.Guid"/>
|
663
|
+
<Property Name="Description" Type="VMM.JobDescription"/>
|
664
|
+
<Property Name="WasNotifiedOfCancel" Type="Edm.Boolean"/>
|
665
|
+
<Property Name="PROTipID" Type="Edm.Guid"/>
|
666
|
+
<Property Name="ResultObjectID" Type="Edm.Guid"/>
|
667
|
+
<Property Name="TargetObjectType" Type="Edm.String"/>
|
668
|
+
<Property Name="AreAuditRecordsAvailable" Type="Edm.Boolean"/>
|
669
|
+
<Property Name="ResultObjectType" Type="Edm.String"/>
|
670
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
671
|
+
<Property Name="StepsLoaded" Type="Edm.Boolean"/>
|
672
|
+
<Property Name="UserName" Type="Edm.String"/>
|
673
|
+
<Property Name="Password" Type="Edm.String"/>
|
674
|
+
<Property Name="SkipLastFailedStep" Type="Edm.Boolean"/>
|
675
|
+
<Property Name="ErrorInfo" Type="VMM.ErrorInfo"/>
|
676
|
+
<Property Name="AdditionalMessages" Type="Collection(VMM.ErrorInfo)" Nullable="false"/>
|
677
|
+
</EntityType>
|
678
|
+
<ComplexType Name="JobDescription">
|
679
|
+
<Property Name="CanSkipLastFailedStep" Type="Edm.Boolean"/>
|
680
|
+
<Property Name="Code" Type="Edm.String"/>
|
681
|
+
<Property Name="DescriptionCodeString" Type="Edm.String"/>
|
682
|
+
<Property Name="IsRestartable" Type="Edm.Boolean"/>
|
683
|
+
<Property Name="IsStoppable" Type="Edm.Boolean"/>
|
684
|
+
<Property Name="Name" Type="Edm.String"/>
|
685
|
+
<Property Name="RequiresCredentialsForRestart" Type="Edm.Boolean"/>
|
686
|
+
</ComplexType>
|
687
|
+
<EntityType Name="CapabilityProfile">
|
688
|
+
<Key>
|
689
|
+
<PropertyRef Name="ID"/>
|
690
|
+
<PropertyRef Name="StampId"/>
|
691
|
+
</Key>
|
692
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
693
|
+
<Property Name="Name" Type="Edm.String"/>
|
694
|
+
<Property Name="Description" Type="Edm.String"/>
|
695
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
696
|
+
<Property Name="COM1PipeNameInitial" Type="Edm.String"/>
|
697
|
+
<Property Name="COM1TextFileName" Type="Edm.String"/>
|
698
|
+
<Property Name="COM2PipeNameInitial" Type="Edm.String"/>
|
699
|
+
<Property Name="COM2TextFileNameInitial" Type="Edm.String"/>
|
700
|
+
<Property Name="CPUCompatibilityModeValue" Type="Edm.Boolean"/>
|
701
|
+
<Property Name="CPUCompatibilityModeValueCanChange" Type="Edm.Boolean"/>
|
702
|
+
<Property Name="CPUCountInitial" Type="Edm.Int32"/>
|
703
|
+
<Property Name="CPUCountMaximum" Type="Edm.Int32"/>
|
704
|
+
<Property Name="CPUCountMinimum" Type="Edm.Int32"/>
|
705
|
+
<Property Name="CPUPriorityCustomInitial" Type="Edm.Int32"/>
|
706
|
+
<Property Name="CPUPriorityCustomMaximum" Type="Edm.Int32"/>
|
707
|
+
<Property Name="CPUPriorityCustomMinimum" Type="Edm.Int32"/>
|
708
|
+
<Property Name="CPUPriorityHighInitial" Type="Edm.Int32"/>
|
709
|
+
<Property Name="CPUPriorityHighMaximum" Type="Edm.Int32"/>
|
710
|
+
<Property Name="CPUPriorityHighMinimum" Type="Edm.Int32"/>
|
711
|
+
<Property Name="CPUPriorityLowInitial" Type="Edm.Int32"/>
|
712
|
+
<Property Name="CPUPriorityLowMaximum" Type="Edm.Int32"/>
|
713
|
+
<Property Name="CPUPriorityLowMinimum" Type="Edm.Int32"/>
|
714
|
+
<Property Name="CPUPriorityNormalInitial" Type="Edm.Int32"/>
|
715
|
+
<Property Name="CPUPriorityNormalMaximum" Type="Edm.Int32"/>
|
716
|
+
<Property Name="CPUPriorityNormalMinimum" Type="Edm.Int32"/>
|
717
|
+
<Property Name="CreateNewDiskCanChange" Type="Edm.Boolean"/>
|
718
|
+
<Property Name="CreateNewDiskInitial" Type="Edm.Boolean"/>
|
719
|
+
<Property Name="DifferencingVirtualHardDiskValue" Type="Edm.Boolean"/>
|
720
|
+
<Property Name="DifferencingVirtualHardDiskValueCanChange" Type="Edm.Boolean"/>
|
721
|
+
<Property Name="DVDDriveChannelInitial" Type="Edm.Int32"/>
|
722
|
+
<Property Name="DVDDriveChannelMaximum" Type="Edm.Int32"/>
|
723
|
+
<Property Name="DVDDriveChannelMinimum" Type="Edm.Int32"/>
|
724
|
+
<Property Name="DVDImageFileInitial" Type="Edm.Guid"/>
|
725
|
+
<Property Name="DynamicMemoryValue" Type="Edm.Boolean"/>
|
726
|
+
<Property Name="DynamicMemoryValueCanChange" Type="Edm.Boolean"/>
|
727
|
+
<Property Name="DynamicVirtualHardDiskValue" Type="Edm.Boolean"/>
|
728
|
+
<Property Name="DynamicVirtualHardDiskValueCanChange" Type="Edm.Boolean"/>
|
729
|
+
<Property Name="EnableNumLockCanChange" Type="Edm.Boolean"/>
|
730
|
+
<Property Name="EnableNumLockInitial" Type="Edm.Boolean"/>
|
731
|
+
<Property Name="ExistDiskStorageClassificationValue" Type="Edm.Guid"/>
|
732
|
+
<Property Name="ExistingDiskChannelInitial" Type="Edm.Int32"/>
|
733
|
+
<Property Name="ExistingDiskChannelMaximum" Type="Edm.Int32"/>
|
734
|
+
<Property Name="ExistingDiskChannelMinimum" Type="Edm.Int32"/>
|
735
|
+
<Property Name="ExpectedCPUUtilizationInitial" Type="Edm.Int64"/>
|
736
|
+
<Property Name="ExpectedCPUUtilizationMaximum" Type="Edm.Int64"/>
|
737
|
+
<Property Name="ExpectedCPUUtilizationMinimum" Type="Edm.Int64"/>
|
738
|
+
<Property Name="FabricCapabilityType" Type="Edm.String"/>
|
739
|
+
<Property Name="FixedVirtualHardDiskValue" Type="Edm.Boolean"/>
|
740
|
+
<Property Name="FixedVirtualHardDiskValueCanChange" Type="Edm.Boolean"/>
|
741
|
+
<Property Name="FloppyImageFileInitial" Type="Edm.Guid"/>
|
742
|
+
<Property Name="LogicalNetworkValue" Type="Edm.Guid"/>
|
743
|
+
<Property Name="MaximumHorizontalMonitorResolutionInitial" Type="Edm.Int32"/>
|
744
|
+
<Property Name="MaximumHorizontalMonitorResolutionMaximum" Type="Edm.Int32"/>
|
745
|
+
<Property Name="MaximumHorizontalMonitorResolutionMinimum" Type="Edm.Int32"/>
|
746
|
+
<Property Name="MaximumMemoryMBInitial" Type="Edm.Int32"/>
|
747
|
+
<Property Name="MaximumMemoryMBMaximum" Type="Edm.Int32"/>
|
748
|
+
<Property Name="MaximumMemoryMBMinimum" Type="Edm.Int32"/>
|
749
|
+
<Property Name="MaximumMonitorCountInitial" Type="Edm.Int32"/>
|
750
|
+
<Property Name="MaximumMonitorCountMaximum" Type="Edm.Int32"/>
|
751
|
+
<Property Name="MaximumMonitorCountMinimum" Type="Edm.Int32"/>
|
752
|
+
<Property Name="MaximumVerticalMonitorResolutionInitial" Type="Edm.Int32"/>
|
753
|
+
<Property Name="MaximumVerticalMonitorResolutionMaximum" Type="Edm.Int32"/>
|
754
|
+
<Property Name="MaximumVerticalMonitorResolutionMinimum" Type="Edm.Int32"/>
|
755
|
+
<Property Name="MemoryAmountInitial" Type="Edm.Int32"/>
|
756
|
+
<Property Name="MemoryAmountMaximum" Type="Edm.Int32"/>
|
757
|
+
<Property Name="MemoryAmountMinimum" Type="Edm.Int32"/>
|
758
|
+
<Property Name="MemoryMBInitial" Type="Edm.Int32"/>
|
759
|
+
<Property Name="MemoryMBMaximum" Type="Edm.Int32"/>
|
760
|
+
<Property Name="MemoryMBMinimum" Type="Edm.Int32"/>
|
761
|
+
<Property Name="MemoryPriorityCustomInitial" Type="Edm.Int32"/>
|
762
|
+
<Property Name="MemoryPriorityCustomMaximum" Type="Edm.Int32"/>
|
763
|
+
<Property Name="MemoryPriorityCustomMinimum" Type="Edm.Int32"/>
|
764
|
+
<Property Name="MemoryPriorityHighInitial" Type="Edm.Int32"/>
|
765
|
+
<Property Name="MemoryPriorityHighMaximum" Type="Edm.Int32"/>
|
766
|
+
<Property Name="MemoryPriorityHighMinimum" Type="Edm.Int32"/>
|
767
|
+
<Property Name="MemoryPriorityLowInitial" Type="Edm.Int32"/>
|
768
|
+
<Property Name="MemoryPriorityLowMaximum" Type="Edm.Int32"/>
|
769
|
+
<Property Name="MemoryPriorityLowMinimum" Type="Edm.Int32"/>
|
770
|
+
<Property Name="MemoryPriorityNormalInitial" Type="Edm.Int32"/>
|
771
|
+
<Property Name="MemoryPriorityNormalMaximum" Type="Edm.Int32"/>
|
772
|
+
<Property Name="MemoryPriorityNormalMinimum" Type="Edm.Int32"/>
|
773
|
+
<Property Name="NetworkAdapterNameInitial" Type="Edm.String"/>
|
774
|
+
<Property Name="NetworkOptimizationValue" Type="Edm.Boolean"/>
|
775
|
+
<Property Name="NetworkOptimizationValueCanChange" Type="Edm.Boolean"/>
|
776
|
+
<Property Name="NewDiskDriveChannelInitial" Type="Edm.Int32"/>
|
777
|
+
<Property Name="NewDiskDriveChannelMaximum" Type="Edm.Int32"/>
|
778
|
+
<Property Name="NewDiskDriveChannelMinimum" Type="Edm.Int32"/>
|
779
|
+
<Property Name="NewDiskFileNameInitial" Type="Edm.String"/>
|
780
|
+
<Property Name="NewDiskImageFileInitial" Type="Edm.Guid"/>
|
781
|
+
<Property Name="NewDiskStorageClassificationValue" Type="Edm.Guid"/>
|
782
|
+
<Property Name="OSCompatibilityModeValue" Type="Edm.Boolean"/>
|
783
|
+
<Property Name="OSCompatibilityModeValueCanChange" Type="Edm.Boolean"/>
|
784
|
+
<Property Name="ReadOnly" Type="Edm.Boolean"/>
|
785
|
+
<Property Name="SCSIAdapterCountInitial" Type="Edm.Int32"/>
|
786
|
+
<Property Name="SCSIAdapterCountMaximum" Type="Edm.Int32"/>
|
787
|
+
<Property Name="SCSIAdapterCountMinimum" Type="Edm.Int32"/>
|
788
|
+
<Property Name="SharedDVDImageFileValue" Type="Edm.Boolean"/>
|
789
|
+
<Property Name="SharedDVDImageFileValueCanChange" Type="Edm.Boolean"/>
|
790
|
+
<Property Name="StartActionAlwaysStartCanChange" Type="Edm.Boolean"/>
|
791
|
+
<Property Name="StartActionAlwaysStartInitial" Type="Edm.Boolean"/>
|
792
|
+
<Property Name="StartActionAutomaticallyStartIfRunningCanChange" Type="Edm.Boolean"/>
|
793
|
+
<Property Name="StartActionAutomaticallyStartIfRunningInitial" Type="Edm.Boolean"/>
|
794
|
+
<Property Name="StartActionDoNothingCanChange" Type="Edm.Boolean"/>
|
795
|
+
<Property Name="StartActionDoNothingInitial" Type="Edm.Boolean"/>
|
796
|
+
<Property Name="StartupDelaySecondsInitial" Type="Edm.Int64"/>
|
797
|
+
<Property Name="StartupDelaySecondsMaximum" Type="Edm.Int64"/>
|
798
|
+
<Property Name="StartupDelaySecondsMinimum" Type="Edm.Int64"/>
|
799
|
+
<Property Name="StartupMemoryMBInitial" Type="Edm.Int32"/>
|
800
|
+
<Property Name="StartupMemoryMBMaximum" Type="Edm.Int32"/>
|
801
|
+
<Property Name="StartupMemoryMBMinimum" Type="Edm.Int32"/>
|
802
|
+
<Property Name="StaticMACAddressInitial" Type="Edm.String"/>
|
803
|
+
<Property Name="StaticMemoryCanChange" Type="Edm.Boolean"/>
|
804
|
+
<Property Name="StaticMemoryInitial" Type="Edm.Boolean"/>
|
805
|
+
<Property Name="StopActionDoNothingCanChange" Type="Edm.Boolean"/>
|
806
|
+
<Property Name="StopActionDoNothingInitial" Type="Edm.Boolean"/>
|
807
|
+
<Property Name="StopActionSaveStateVMCanChange" Type="Edm.Boolean"/>
|
808
|
+
<Property Name="StopActionSaveStateVMInitial" Type="Edm.Boolean"/>
|
809
|
+
<Property Name="StopActionShutdownVMCanChange" Type="Edm.Boolean"/>
|
810
|
+
<Property Name="StopActionShutdownVMInitial" Type="Edm.Boolean"/>
|
811
|
+
<Property Name="StopActionTurnOffVMCanChange" Type="Edm.Boolean"/>
|
812
|
+
<Property Name="StopActionTurnOffVMInitial" Type="Edm.Boolean"/>
|
813
|
+
<Property Name="TargetMemoryBufferPercentInitial" Type="Edm.Int32"/>
|
814
|
+
<Property Name="TargetMemoryBufferPercentMaximum" Type="Edm.Int32"/>
|
815
|
+
<Property Name="TargetMemoryBufferPercentMinimum" Type="Edm.Int32"/>
|
816
|
+
<Property Name="UseBusLogicParallelSCSICanChange" Type="Edm.Boolean"/>
|
817
|
+
<Property Name="UseBusLogicParallelSCSIInitial" Type="Edm.Boolean"/>
|
818
|
+
<Property Name="UseCOM1CanChange" Type="Edm.Boolean"/>
|
819
|
+
<Property Name="UseCOM1Initial" Type="Edm.Boolean"/>
|
820
|
+
<Property Name="UseCOM1NamedPipeCanChange" Type="Edm.Boolean"/>
|
821
|
+
<Property Name="UseCOM1NamedPipeInitial" Type="Edm.Boolean"/>
|
822
|
+
<Property Name="UseCOM1TextFileCanChange" Type="Edm.Boolean"/>
|
823
|
+
<Property Name="UseCOM1TextFileInitial" Type="Edm.Boolean"/>
|
824
|
+
<Property Name="UseCOM2CanChange" Type="Edm.Boolean"/>
|
825
|
+
<Property Name="UseCOM2Initial" Type="Edm.Boolean"/>
|
826
|
+
<Property Name="UseCOM2NamedPipeCanChange" Type="Edm.Boolean"/>
|
827
|
+
<Property Name="UseCOM2NamedPipeInitial" Type="Edm.Boolean"/>
|
828
|
+
<Property Name="UseCOM2TextFileCanChange" Type="Edm.Boolean"/>
|
829
|
+
<Property Name="UseCOM2TextFileInitial" Type="Edm.Boolean"/>
|
830
|
+
<Property Name="UseDynamicIPv4CanChange" Type="Edm.Boolean"/>
|
831
|
+
<Property Name="UseDynamicIPv4Initial" Type="Edm.Boolean"/>
|
832
|
+
<Property Name="UseDynamicIPv6CanChange" Type="Edm.Boolean"/>
|
833
|
+
<Property Name="UseDynamicIPv6Initial" Type="Edm.Boolean"/>
|
834
|
+
<Property Name="UseEmulatedNetworkAdapterCanChange" Type="Edm.Boolean"/>
|
835
|
+
<Property Name="UseEmulatedNetworkAdapterInitial" Type="Edm.Boolean"/>
|
836
|
+
<Property Name="UseExistingDiskForOperatingSystemCanChange" Type="Edm.Boolean"/>
|
837
|
+
<Property Name="UseExistingDiskForOperatingSystemInitial" Type="Edm.Boolean"/>
|
838
|
+
<Property Name="UseExistingDiskImageFileCanChange" Type="Edm.Boolean"/>
|
839
|
+
<Property Name="UseExistingDiskImageFileInitial" Type="Edm.Boolean"/>
|
840
|
+
<Property Name="UseExistingDVDImageFileCanChange" Type="Edm.Boolean"/>
|
841
|
+
<Property Name="UseExistingDVDImageFileInitial" Type="Edm.Boolean"/>
|
842
|
+
<Property Name="UseExistingFloppyDriveCanChange" Type="Edm.Boolean"/>
|
843
|
+
<Property Name="UseExistingFloppyDriveInitial" Type="Edm.Boolean"/>
|
844
|
+
<Property Name="UseExistingFloppyImageFileCanChange" Type="Edm.Boolean"/>
|
845
|
+
<Property Name="UseExistingFloppyImageFileInitial" Type="Edm.Boolean"/>
|
846
|
+
<Property Name="UseExistingOrFirstAvailableDiskDriveChannelCanChange" Type="Edm.Boolean"/>
|
847
|
+
<Property Name="UseExistingOrFirstAvailableDiskDriveChannelInitial" Type="Edm.Boolean"/>
|
848
|
+
<Property Name="UseExistingOrFirstAvailableDVDDriveChannelCanChange" Type="Edm.Boolean"/>
|
849
|
+
<Property Name="UseExistingOrFirstAvailableDVDDriveChannelInitial" Type="Edm.Boolean"/>
|
850
|
+
<Property Name="UseFirstAvailableChannelForNewDiskCanChange" Type="Edm.Boolean"/>
|
851
|
+
<Property Name="UseFirstAvailableChannelForNewDiskInitial" Type="Edm.Boolean"/>
|
852
|
+
<Property Name="UseForOperatingSystemCanChange" Type="Edm.Boolean"/>
|
853
|
+
<Property Name="UseForOperatingSystemInitial" Type="Edm.Boolean"/>
|
854
|
+
<Property Name="UseLSILogicParallelSCSICanChange" Type="Edm.Boolean"/>
|
855
|
+
<Property Name="UseLSILogicParallelSCSIInitial" Type="Edm.Boolean"/>
|
856
|
+
<Property Name="UseLSILogicSASSCSICanChange" Type="Edm.Boolean"/>
|
857
|
+
<Property Name="UseLSILogicSASSCSIInitial" Type="Edm.Boolean"/>
|
858
|
+
<Property Name="UseMACSpoofingCanChange" Type="Edm.Boolean"/>
|
859
|
+
<Property Name="UseMACSpoofingInitial" Type="Edm.Boolean"/>
|
860
|
+
<Property Name="UseNoMediaDVDDriveCanChange" Type="Edm.Boolean"/>
|
861
|
+
<Property Name="UseNoMediaDVDDriveInitial" Type="Edm.Boolean"/>
|
862
|
+
<Property Name="UseNoMediaFloppyDriveCanChange" Type="Edm.Boolean"/>
|
863
|
+
<Property Name="UseNoMediaFloppyDriveInitial" Type="Edm.Boolean"/>
|
864
|
+
<Property Name="UsePassthroughDiskCanChange" Type="Edm.Boolean"/>
|
865
|
+
<Property Name="UsePassthroughDiskInitial" Type="Edm.Boolean"/>
|
866
|
+
<Property Name="UsePhysicalDVDDriveCanChange" Type="Edm.Boolean"/>
|
867
|
+
<Property Name="UsePhysicalDVDDriveInitial" Type="Edm.Boolean"/>
|
868
|
+
<Property Name="UseStaticIPv4CanChange" Type="Edm.Boolean"/>
|
869
|
+
<Property Name="UseStaticIPv4Initial" Type="Edm.Boolean"/>
|
870
|
+
<Property Name="UseStaticIPv6CanChange" Type="Edm.Boolean"/>
|
871
|
+
<Property Name="UseStaticIPv6Initial" Type="Edm.Boolean"/>
|
872
|
+
<Property Name="UseStaticMACAddressCanChange" Type="Edm.Boolean"/>
|
873
|
+
<Property Name="UseStaticMACAddressInitial" Type="Edm.Boolean"/>
|
874
|
+
<Property Name="UseSyntheticNetworkAdapterCanChange" Type="Edm.Boolean"/>
|
875
|
+
<Property Name="UseSyntheticNetworkAdapterInitial" Type="Edm.Boolean"/>
|
876
|
+
<Property Name="UseVMWareParavirtualSCSICanChange" Type="Edm.Boolean"/>
|
877
|
+
<Property Name="UseVMWareParavirtualSCSIInitial" Type="Edm.Boolean"/>
|
878
|
+
<Property Name="VirtualDVDDriveCountInitial" Type="Edm.Int32"/>
|
879
|
+
<Property Name="VirtualDVDDriveCountMaximum" Type="Edm.Int32"/>
|
880
|
+
<Property Name="VirtualDVDDriveCountMinimum" Type="Edm.Int32"/>
|
881
|
+
<Property Name="VirtualHardDiskCountInitial" Type="Edm.Int32"/>
|
882
|
+
<Property Name="VirtualHardDiskCountMaximum" Type="Edm.Int32"/>
|
883
|
+
<Property Name="VirtualHardDiskCountMinimum" Type="Edm.Int32"/>
|
884
|
+
<Property Name="VirtualHardDiskSizeMBInitial" Type="Edm.Int64"/>
|
885
|
+
<Property Name="VirtualHardDiskSizeMBMaximum" Type="Edm.Int64"/>
|
886
|
+
<Property Name="VirtualHardDiskSizeMBMinimum" Type="Edm.Int64"/>
|
887
|
+
<Property Name="VirtualNetworkAdapterCountInitial" Type="Edm.Int32"/>
|
888
|
+
<Property Name="VirtualNetworkAdapterCountMaximum" Type="Edm.Int32"/>
|
889
|
+
<Property Name="VirtualNetworkAdapterCountMinimum" Type="Edm.Int32"/>
|
890
|
+
<Property Name="VMHighlyAvailableValue" Type="Edm.Boolean"/>
|
891
|
+
<Property Name="VMHighlyAvailableValueCanChange" Type="Edm.Boolean"/>
|
892
|
+
</EntityType>
|
893
|
+
<EntityType Name="Cloud">
|
894
|
+
<Key>
|
895
|
+
<PropertyRef Name="ID"/>
|
896
|
+
<PropertyRef Name="StampId"/>
|
897
|
+
</Key>
|
898
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
899
|
+
<Property Name="Name" Type="Edm.String"/>
|
900
|
+
<Property Name="Description" Type="Edm.String"/>
|
901
|
+
<Property Name="LastModifiedDate" Type="Edm.DateTime"/>
|
902
|
+
<Property Name="WritableLibraryPath" Type="Edm.String"/>
|
903
|
+
<Property Name="UserRoleID" Type="Edm.Guid"/>
|
904
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
905
|
+
<NavigationProperty Name="Capacity" Relationship="VMM.Cloud_Capacity" ToRole="Capacity" FromRole="Cloud"/>
|
906
|
+
<NavigationProperty Name="LogicalNetworks" Relationship="VMM.Cloud_LogicalNetworks" ToRole="LogicalNetworks" FromRole="Cloud"/>
|
907
|
+
<NavigationProperty Name="CapabilityProfiles" Relationship="VMM.Cloud_CapabilityProfiles" ToRole="CapabilityProfiles" FromRole="Cloud"/>
|
908
|
+
<NavigationProperty Name="LibraryShares" Relationship="VMM.Cloud_LibraryShares" ToRole="LibraryShares" FromRole="Cloud"/>
|
909
|
+
<NavigationProperty Name="QuotaAndUsageComponents" Relationship="VMM.Cloud_QuotaAndUsageComponents" ToRole="QuotaAndUsageComponents" FromRole="Cloud"/>
|
910
|
+
</EntityType>
|
911
|
+
<EntityType Name="VMCheckPoint">
|
912
|
+
<Key>
|
913
|
+
<PropertyRef Name="ID"/>
|
914
|
+
<PropertyRef Name="StampId"/>
|
915
|
+
</Key>
|
916
|
+
<Property Name="Accessibility" Type="Edm.String"/>
|
917
|
+
<Property Name="CheckpointID" Type="Edm.Guid"/>
|
918
|
+
<Property Name="Description" Type="Edm.String"/>
|
919
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
920
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
921
|
+
<Property Name="Name" Type="Edm.String"/>
|
922
|
+
<Property Name="ParentCheckpointID" Type="Edm.Guid"/>
|
923
|
+
<Property Name="VMId" Type="Edm.Guid"/>
|
924
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
925
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
926
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
927
|
+
<Property Name="VMCheckPointAction" Type="Edm.String"/>
|
928
|
+
<Property Name="Confirm" Type="Edm.Boolean"/>
|
929
|
+
<Property Name="RunAsynchronously" Type="Edm.Boolean"/>
|
930
|
+
<NavigationProperty Name="ParentCheckPoint" Relationship="VMM.VMCheckPoint_ParentCheckPoint" ToRole="ParentCheckPoint" FromRole="VMCheckPoint"/>
|
931
|
+
</EntityType>
|
932
|
+
<EntityType Name="ServiceTemplate">
|
933
|
+
<Key>
|
934
|
+
<PropertyRef Name="ID"/>
|
935
|
+
<PropertyRef Name="StampId"/>
|
936
|
+
</Key>
|
937
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
938
|
+
<Property Name="Description" Type="Edm.String"/>
|
939
|
+
<Property Name="Name" Type="Edm.String"/>
|
940
|
+
<Property Name="Namespace" Type="Edm.String"/>
|
941
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
942
|
+
<Property Name="Release" Type="Edm.String"/>
|
943
|
+
<Property Name="ServicePriority" Type="Edm.String"/>
|
944
|
+
<Property Name="ServiceTemplateState" Type="Edm.String"/>
|
945
|
+
<Property Name="IsPublished" Type="Edm.Boolean"/>
|
946
|
+
<Property Name="PublishedTime" Type="Edm.DateTime"/>
|
947
|
+
<Property Name="Owner" Type="VMM.UserAndRole"/>
|
948
|
+
<Property Name="GrantedToList" Type="Collection(VMM.UserAndRole)" Nullable="false"/>
|
949
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
950
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
951
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
952
|
+
<Property Name="NotificationsAvailable" Type="Edm.Boolean"/>
|
953
|
+
<Property Name="UseAsDefaultRelease" Type="Edm.Boolean"/>
|
954
|
+
<Property Name="UseAsPattern" Type="Edm.Boolean"/>
|
955
|
+
<Property Name="Accessibility" Type="Edm.String"/>
|
956
|
+
<Property Name="ServiceSettings" Type="Collection(VMM.ServiceSetting)" Nullable="false"/>
|
957
|
+
<Property Name="CustomProperty" Type="Collection(VMM.CustomProperty)" Nullable="false"/>
|
958
|
+
<NavigationProperty Name="ComputerTierTemplates" Relationship="VMM.ServiceTemplate_ComputerTierTemplates" ToRole="ComputerTierTemplates" FromRole="ServiceTemplate"/>
|
959
|
+
<NavigationProperty Name="ApplicationHostTemplates" Relationship="VMM.ServiceTemplate_ApplicationHostTemplates" ToRole="ApplicationHostTemplates" FromRole="ServiceTemplate"/>
|
960
|
+
</EntityType>
|
961
|
+
<ComplexType Name="ServiceSetting">
|
962
|
+
<Property Name="Name" Type="Edm.String"/>
|
963
|
+
<Property Name="Description" Type="Edm.String"/>
|
964
|
+
<Property Name="Value" Type="Edm.String"/>
|
965
|
+
<Property Name="Mandatory" Type="Edm.Boolean"/>
|
966
|
+
<Property Name="HasEncryptedValue" Type="Edm.Boolean"/>
|
967
|
+
<Property Name="IsSecure" Type="Edm.Boolean"/>
|
968
|
+
<Property Name="GlobalSettingType" Type="Edm.String"/>
|
969
|
+
</ComplexType>
|
970
|
+
<ComplexType Name="CustomProperty">
|
971
|
+
<Property Name="Name" Type="Edm.String"/>
|
972
|
+
<Property Name="Value" Type="Edm.String"/>
|
973
|
+
</ComplexType>
|
974
|
+
<EntityType Name="Service">
|
975
|
+
<Key>
|
976
|
+
<PropertyRef Name="ID"/>
|
977
|
+
<PropertyRef Name="StampId"/>
|
978
|
+
</Key>
|
979
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
980
|
+
<Property Name="Description" Type="Edm.String"/>
|
981
|
+
<Property Name="Name" Type="Edm.String"/>
|
982
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
983
|
+
<Property Name="NewServiceDeployment" Type="VMM.NewServiceDeployment"/>
|
984
|
+
<Property Name="Owner" Type="VMM.UserAndRole"/>
|
985
|
+
<Property Name="GrantedToList" Type="Collection(VMM.UserAndRole)" Nullable="false"/>
|
986
|
+
<Property Name="AllVMsAccessible" Type="Edm.Boolean"/>
|
987
|
+
<Property Name="CostCenter" Type="Edm.String"/>
|
988
|
+
<Property Name="DeploymentState" Type="Edm.String"/>
|
989
|
+
<Property Name="DeployedTo" Type="Edm.String"/>
|
990
|
+
<Property Name="InServicingMode" Type="Edm.Boolean"/>
|
991
|
+
<Property Name="OverallStatus" Type="Edm.String"/>
|
992
|
+
<Property Name="PendingServiceTemplatePresent" Type="Edm.Boolean"/>
|
993
|
+
<Property Name="PendingServiceTemplateRelease" Type="Edm.String"/>
|
994
|
+
<Property Name="ServicePriority" Type="Edm.String"/>
|
995
|
+
<Property Name="ServiceTemplateRelease" Type="Edm.String"/>
|
996
|
+
<Property Name="ServiceStatus" Type="Edm.String"/>
|
997
|
+
<Property Name="VMHostGroup" Type="Edm.String"/>
|
998
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
999
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
1000
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
1001
|
+
<Property Name="NotificationsAvailable" Type="Edm.Boolean"/>
|
1002
|
+
<Property Name="Accessibility" Type="Edm.String"/>
|
1003
|
+
<Property Name="Operation" Type="Edm.String"/>
|
1004
|
+
<Property Name="IgnorePlacementErrors" Type="Edm.Boolean"/>
|
1005
|
+
<Property Name="FailedJobID" Type="Edm.Guid"/>
|
1006
|
+
<Property Name="CloudId" Type="Edm.Guid"/>
|
1007
|
+
<Property Name="ServiceTemplateId" Type="Edm.Guid"/>
|
1008
|
+
<Property Name="CustomProperty" Type="Collection(VMM.CustomProperty)" Nullable="false"/>
|
1009
|
+
<Property Name="PendingServiceSettings" Type="Collection(VMM.ServiceSetting)" Nullable="false"/>
|
1010
|
+
<Property Name="ServiceSettings" Type="Collection(VMM.ServiceSetting)" Nullable="false"/>
|
1011
|
+
<Property Name="ServicingWindow" Type="VMM.ServicingWindow"/>
|
1012
|
+
<NavigationProperty Name="FailedJob" Relationship="VMM.Service_FailedJob" ToRole="FailedJob" FromRole="Service"/>
|
1013
|
+
<NavigationProperty Name="PendingServiceTemplate" Relationship="VMM.Service_PendingServiceTemplate" ToRole="PendingServiceTemplate" FromRole="Service"/>
|
1014
|
+
<NavigationProperty Name="ServiceTemplate" Relationship="VMM.Service_ServiceTemplate" ToRole="ServiceTemplate" FromRole="Service"/>
|
1015
|
+
<NavigationProperty Name="Cloud" Relationship="VMM.Service_Cloud" ToRole="Cloud" FromRole="Service"/>
|
1016
|
+
<NavigationProperty Name="ComputerTiers" Relationship="VMM.Service_ComputerTiers" ToRole="ComputerTiers" FromRole="Service"/>
|
1017
|
+
<NavigationProperty Name="MostRecentTask" Relationship="VMM.Service_MostRecentTask" ToRole="MostRecentTask" FromRole="Service"/>
|
1018
|
+
<NavigationProperty Name="ApplicationHosts" Relationship="VMM.Service_ApplicationHosts" ToRole="ApplicationHosts" FromRole="Service"/>
|
1019
|
+
</EntityType>
|
1020
|
+
<ComplexType Name="NewServiceDeployment">
|
1021
|
+
<Property Name="ServiceConfiguration" Type="VMM.ServiceDeploymentConfiguration"/>
|
1022
|
+
<Property Name="TierConfigurations" Type="Collection(VMM.ServiceTierAndVMConfiguration)" Nullable="false"/>
|
1023
|
+
</ComplexType>
|
1024
|
+
<ComplexType Name="ServiceDeploymentConfiguration">
|
1025
|
+
<Property Name="ServiceSettings" Type="Collection(VMM.ServiceSettingsInput)" Nullable="false"/>
|
1026
|
+
<Property Name="Name" Type="Edm.String"/>
|
1027
|
+
<Property Name="Description" Type="Edm.String"/>
|
1028
|
+
<Property Name="CostCenter" Type="Edm.String"/>
|
1029
|
+
<Property Name="Tag" Type="Edm.String"/>
|
1030
|
+
<Property Name="Priority" Type="Edm.String"/>
|
1031
|
+
</ComplexType>
|
1032
|
+
<ComplexType Name="ServiceSettingsInput">
|
1033
|
+
<Property Name="Name" Type="Edm.String"/>
|
1034
|
+
<Property Name="Value" Type="Edm.String"/>
|
1035
|
+
<Property Name="Description" Type="Edm.String"/>
|
1036
|
+
<Property Name="IsRequired" Type="Edm.Boolean"/>
|
1037
|
+
<Property Name="IsEncrypted" Type="Edm.Boolean"/>
|
1038
|
+
</ComplexType>
|
1039
|
+
<ComplexType Name="ServiceTierAndVMConfiguration">
|
1040
|
+
<Property Name="Name" Type="Edm.String"/>
|
1041
|
+
<Property Name="VMConfigurations" Type="Collection(VMM.VMConfiguration)" Nullable="false"/>
|
1042
|
+
</ComplexType>
|
1043
|
+
<ComplexType Name="VMConfiguration">
|
1044
|
+
<Property Name="VMName" Type="Edm.String"/>
|
1045
|
+
<Property Name="ComputerName" Type="Edm.String"/>
|
1046
|
+
<Property Name="Description" Type="Edm.String"/>
|
1047
|
+
<Property Name="CostCenter" Type="Edm.String"/>
|
1048
|
+
<Property Name="Tag" Type="Edm.String"/>
|
1049
|
+
</ComplexType>
|
1050
|
+
<ComplexType Name="ServicingWindow">
|
1051
|
+
<Property Name="Category" Type="Edm.String"/>
|
1052
|
+
<Property Name="Name" Type="Edm.String"/>
|
1053
|
+
<Property Name="Description" Type="Edm.String"/>
|
1054
|
+
<Property Name="Owner" Type="Edm.String"/>
|
1055
|
+
<Property Name="TimeZone" Type="Edm.Int32"/>
|
1056
|
+
<Property Name="StartDate" Type="Edm.DateTime"/>
|
1057
|
+
<Property Name="StartTimeOfDay" Type="Edm.String"/>
|
1058
|
+
<Property Name="WeeklyScheduleDayOfWeek" Type="Edm.String"/>
|
1059
|
+
<Property Name="MonthlyScheduleDayOfWeek" Type="Edm.String"/>
|
1060
|
+
<Property Name="DayOfMonth" Type="Edm.String"/>
|
1061
|
+
<Property Name="WeekOfMonth" Type="Edm.String"/>
|
1062
|
+
<Property Name="DaysToRecur" Type="Edm.Int32"/>
|
1063
|
+
<Property Name="MonthsToRecur" Type="Edm.Int32"/>
|
1064
|
+
<Property Name="WeeksToRecur" Type="Edm.Int32"/>
|
1065
|
+
<Property Name="MinutesDuration" Type="Edm.Int32"/>
|
1066
|
+
<Property Name="ScheduleType" Type="Edm.String"/>
|
1067
|
+
</ComplexType>
|
1068
|
+
<EntityType Name="ComputerTierTemplate">
|
1069
|
+
<Key>
|
1070
|
+
<PropertyRef Name="ID"/>
|
1071
|
+
<PropertyRef Name="StampId"/>
|
1072
|
+
</Key>
|
1073
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1074
|
+
<Property Name="Description" Type="Edm.String"/>
|
1075
|
+
<Property Name="Name" Type="Edm.String"/>
|
1076
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1077
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
1078
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
1079
|
+
<Property Name="BlockAutomaticMigration" Type="Edm.Boolean"/>
|
1080
|
+
<Property Name="DefaultInstanceCount" Type="Edm.Int32"/>
|
1081
|
+
<Property Name="DeploymentOrder" Type="Edm.Int32"/>
|
1082
|
+
<Property Name="InstanceMaximumCount" Type="Edm.Int32"/>
|
1083
|
+
<Property Name="InstanceMinimumCount" Type="Edm.Int32"/>
|
1084
|
+
<Property Name="NumberOfUpgradeDomains" Type="Edm.Int32"/>
|
1085
|
+
<Property Name="ServicingOrder" Type="Edm.Int32"/>
|
1086
|
+
<Property Name="Tag" Type="Edm.String"/>
|
1087
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
1088
|
+
<Property Name="Accessibility" Type="Edm.String"/>
|
1089
|
+
<Property Name="ServiceTemplateId" Type="Edm.Guid"/>
|
1090
|
+
<NavigationProperty Name="VMTemplate" Relationship="VMM.ComputerTierTemplate_VMTemplate" ToRole="VMTemplate" FromRole="ComputerTierTemplate"/>
|
1091
|
+
</EntityType>
|
1092
|
+
<EntityType Name="ComputerTier">
|
1093
|
+
<Key>
|
1094
|
+
<PropertyRef Name="ID"/>
|
1095
|
+
<PropertyRef Name="StampId"/>
|
1096
|
+
</Key>
|
1097
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1098
|
+
<Property Name="Description" Type="Edm.String"/>
|
1099
|
+
<Property Name="Name" Type="Edm.String"/>
|
1100
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1101
|
+
<Property Name="AllVMsAccessible" Type="Edm.Boolean"/>
|
1102
|
+
<Property Name="ComputerTierStatus" Type="Edm.String"/>
|
1103
|
+
<Property Name="InstanceMaximumCount" Type="Edm.Int32"/>
|
1104
|
+
<Property Name="InstanceMinimumCount" Type="Edm.Int32"/>
|
1105
|
+
<Property Name="OverallStatus" Type="Edm.String"/>
|
1106
|
+
<Property Name="ServicingType" Type="Edm.String"/>
|
1107
|
+
<Property Name="DeploymentState" Type="Edm.String"/>
|
1108
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
1109
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
1110
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
1111
|
+
<Property Name="Accessibility" Type="Edm.String"/>
|
1112
|
+
<Property Name="ServiceId" Type="Edm.Guid"/>
|
1113
|
+
<Property Name="FailedJobID" Type="Edm.Guid"/>
|
1114
|
+
<Property Name="TierTemplateId" Type="Edm.Guid"/>
|
1115
|
+
<Property Name="CustomProperty" Type="Collection(VMM.CustomProperty)" Nullable="false"/>
|
1116
|
+
<NavigationProperty Name="ComputerTierTemplate" Relationship="VMM.ComputerTier_ComputerTierTemplate" ToRole="ComputerTierTemplate" FromRole="ComputerTier"/>
|
1117
|
+
<NavigationProperty Name="VMs" Relationship="VMM.ComputerTier_VMs" ToRole="VMs" FromRole="ComputerTier"/>
|
1118
|
+
<NavigationProperty Name="MostRecentTask" Relationship="VMM.ComputerTier_MostRecentTask" ToRole="MostRecentTask" FromRole="ComputerTier"/>
|
1119
|
+
</EntityType>
|
1120
|
+
<EntityType Name="LibraryShare">
|
1121
|
+
<Key>
|
1122
|
+
<PropertyRef Name="ID"/>
|
1123
|
+
<PropertyRef Name="StampId"/>
|
1124
|
+
</Key>
|
1125
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1126
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1127
|
+
<Property Name="Description" Type="Edm.String"/>
|
1128
|
+
<Property Name="Name" Type="Edm.String"/>
|
1129
|
+
<Property Name="Path" Type="Edm.String"/>
|
1130
|
+
</EntityType>
|
1131
|
+
<EntityType Name="ApplicationHost">
|
1132
|
+
<Key>
|
1133
|
+
<PropertyRef Name="ID"/>
|
1134
|
+
<PropertyRef Name="StampId"/>
|
1135
|
+
</Key>
|
1136
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1137
|
+
<Property Name="Description" Type="Edm.String"/>
|
1138
|
+
<Property Name="Name" Type="Edm.String"/>
|
1139
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1140
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
1141
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
1142
|
+
<Property Name="Owner" Type="Edm.String"/>
|
1143
|
+
<Property Name="ComputerName" Type="Edm.String"/>
|
1144
|
+
<Property Name="DeploymentState" Type="Edm.String"/>
|
1145
|
+
<Property Name="ServiceId" Type="Edm.Guid"/>
|
1146
|
+
<Property Name="FailedJobID" Type="Edm.Guid"/>
|
1147
|
+
<NavigationProperty Name="ApplicationHostTemplate" Relationship="VMM.ApplicationHost_ApplicationHostTemplate" ToRole="ApplicationHostTemplate" FromRole="ApplicationHost"/>
|
1148
|
+
</EntityType>
|
1149
|
+
<EntityType Name="ApplicationHostTemplate">
|
1150
|
+
<Key>
|
1151
|
+
<PropertyRef Name="ID"/>
|
1152
|
+
<PropertyRef Name="StampId"/>
|
1153
|
+
</Key>
|
1154
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1155
|
+
<Property Name="Description" Type="Edm.String"/>
|
1156
|
+
<Property Name="Name" Type="Edm.String"/>
|
1157
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1158
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
1159
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
1160
|
+
<Property Name="DeploymentOrder" Type="Edm.Int32"/>
|
1161
|
+
<Property Name="ComputerName" Type="Edm.String"/>
|
1162
|
+
<Property Name="ServicingOrder" Type="Edm.Int32"/>
|
1163
|
+
<Property Name="Tag" Type="Edm.String"/>
|
1164
|
+
<Property Name="ServiceTemplateId" Type="Edm.Guid"/>
|
1165
|
+
<Property Name="FailedJobID" Type="Edm.Guid"/>
|
1166
|
+
</EntityType>
|
1167
|
+
<EntityType Name="VMNetwork">
|
1168
|
+
<Key>
|
1169
|
+
<PropertyRef Name="ID"/>
|
1170
|
+
<PropertyRef Name="StampId"/>
|
1171
|
+
</Key>
|
1172
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1173
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1174
|
+
<Property Name="Name" Type="Edm.String"/>
|
1175
|
+
<Property Name="ExternalName" Type="Edm.String"/>
|
1176
|
+
<Property Name="Description" Type="Edm.String"/>
|
1177
|
+
<Property Name="IsolationType" Type="Edm.String"/>
|
1178
|
+
<Property Name="PAIPAddressPoolType" Type="Edm.String"/>
|
1179
|
+
<Property Name="CAIPAddressPoolType" Type="Edm.String"/>
|
1180
|
+
<Property Name="Owner" Type="VMM.UserAndRole"/>
|
1181
|
+
<Property Name="GrantedToList" Type="Collection(VMM.UserAndRole)" Nullable="false"/>
|
1182
|
+
<Property Name="LogicalNetworkId" Type="Edm.Guid"/>
|
1183
|
+
<Property Name="LogicalNetworkName" Type="Edm.String"/>
|
1184
|
+
<Property Name="AutoCreateSubnet" Type="Edm.Boolean"/>
|
1185
|
+
<Property Name="IsAssigned" Type="Edm.Boolean"/>
|
1186
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
1187
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
1188
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
1189
|
+
<Property Name="PROTipID" Type="Edm.Guid"/>
|
1190
|
+
<Property Name="RoutingDomainId" Type="Edm.Guid"/>
|
1191
|
+
<NavigationProperty Name="MostRecentTask" Relationship="VMM.VMNetwork_MostRecentTask" ToRole="MostRecentTask" FromRole="VMNetwork"/>
|
1192
|
+
<NavigationProperty Name="VMNetworkGateways" Relationship="VMM.VMNetwork_VMNetworkGateways" ToRole="VMNetworkGateways" FromRole="VMNetwork"/>
|
1193
|
+
</EntityType>
|
1194
|
+
<EntityType Name="QuotaAndUsageComponent">
|
1195
|
+
<Key>
|
1196
|
+
<PropertyRef Name="ID"/>
|
1197
|
+
<PropertyRef Name="QuotaDimension"/>
|
1198
|
+
<PropertyRef Name="StampId"/>
|
1199
|
+
</Key>
|
1200
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1201
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1202
|
+
<Property Name="UserRoleID" Type="Edm.Guid"/>
|
1203
|
+
<Property Name="QuotaDimension" Type="Edm.String" Nullable="false"/>
|
1204
|
+
<Property Name="UserRoleQuota" Type="Edm.Int32"/>
|
1205
|
+
<Property Name="UserRoleUsage" Type="Edm.Int32" Nullable="false"/>
|
1206
|
+
<Property Name="UserQuota" Type="Edm.Int32"/>
|
1207
|
+
<Property Name="UserUsage" Type="Edm.Int32" Nullable="false"/>
|
1208
|
+
</EntityType>
|
1209
|
+
<EntityType Name="StaticIPAddressPool">
|
1210
|
+
<Key>
|
1211
|
+
<PropertyRef Name="ID"/>
|
1212
|
+
<PropertyRef Name="StampId"/>
|
1213
|
+
</Key>
|
1214
|
+
<Property Name="EnableNetBIOS" Type="Edm.Boolean"/>
|
1215
|
+
<Property Name="IsFullyCached" Type="Edm.Boolean"/>
|
1216
|
+
<Property Name="IsIPv4" Type="Edm.Boolean"/>
|
1217
|
+
<Property Name="IsMulticastPool" Type="Edm.Boolean"/>
|
1218
|
+
<Property Name="IsViewOnly" Type="Edm.Boolean"/>
|
1219
|
+
<Property Name="MarkedForDeletion" Type="Edm.Boolean"/>
|
1220
|
+
<Property Name="ExternalSyncTime" Type="Edm.DateTime"/>
|
1221
|
+
<Property Name="VLanID" Type="Edm.Int32"/>
|
1222
|
+
<Property Name="AvailableAddresses" Type="Edm.Decimal"/>
|
1223
|
+
<Property Name="AvailableDIPAddresses" Type="Edm.Decimal"/>
|
1224
|
+
<Property Name="AvailableVIPAddresses" Type="Edm.Decimal"/>
|
1225
|
+
<Property Name="ReservedAddresses" Type="Edm.Decimal"/>
|
1226
|
+
<Property Name="TotalAddresses" Type="Edm.Decimal"/>
|
1227
|
+
<Property Name="TotalDIPAddresses" Type="Edm.Decimal"/>
|
1228
|
+
<Property Name="TotalVIPAddresses" Type="Edm.Decimal"/>
|
1229
|
+
<Property Name="UnassignedAddresses" Type="Edm.Decimal"/>
|
1230
|
+
<Property Name="UnassignedDIPAddresses" Type="Edm.Decimal"/>
|
1231
|
+
<Property Name="UnassignedVIPAddresses" Type="Edm.Decimal"/>
|
1232
|
+
<Property Name="AddressFamily" Type="Edm.String"/>
|
1233
|
+
<Property Name="Description" Type="Edm.String"/>
|
1234
|
+
<Property Name="DNSSuffix" Type="Edm.String"/>
|
1235
|
+
<Property Name="IPAddressRangeEnd" Type="Edm.String"/>
|
1236
|
+
<Property Name="IPAddressRangeStart" Type="Edm.String"/>
|
1237
|
+
<Property Name="IPAddressReservedSet" Type="Edm.String"/>
|
1238
|
+
<Property Name="Name" Type="Edm.String"/>
|
1239
|
+
<Property Name="Subnet" Type="Edm.String"/>
|
1240
|
+
<Property Name="VIPAddressSet" Type="Edm.String"/>
|
1241
|
+
<Property Name="NetworkEntityAccessType" Type="Edm.String"/>
|
1242
|
+
<Property Name="DNSSearchSuffixes" Type="Collection(Edm.String)" Nullable="false"/>
|
1243
|
+
<Property Name="DNSServers" Type="Collection(Edm.String)" Nullable="false"/>
|
1244
|
+
<Property Name="WINSServers" Type="Collection(Edm.String)" Nullable="false"/>
|
1245
|
+
<Property Name="DefaultGatewayIPAddresses" Type="Collection(Edm.String)" Nullable="false"/>
|
1246
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1247
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1248
|
+
<Property Name="ExternalId" Type="Edm.Guid"/>
|
1249
|
+
<Property Name="VMSubnetId" Type="Edm.Guid"/>
|
1250
|
+
<Property Name="LogicalNetworkDefinitionId" Type="Edm.Guid"/>
|
1251
|
+
</EntityType>
|
1252
|
+
<EntityType Name="VMSubnet">
|
1253
|
+
<Key>
|
1254
|
+
<PropertyRef Name="ID"/>
|
1255
|
+
<PropertyRef Name="StampId"/>
|
1256
|
+
</Key>
|
1257
|
+
<Property Name="Name" Type="Edm.String"/>
|
1258
|
+
<Property Name="Subnet" Type="Edm.String"/>
|
1259
|
+
<Property Name="VMNetworkName" Type="Edm.String"/>
|
1260
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1261
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1262
|
+
<Property Name="VMNetworkId" Type="Edm.Guid"/>
|
1263
|
+
</EntityType>
|
1264
|
+
<EntityType Name="HardwareProfile">
|
1265
|
+
<Key>
|
1266
|
+
<PropertyRef Name="ID"/>
|
1267
|
+
<PropertyRef Name="StampId"/>
|
1268
|
+
</Key>
|
1269
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1270
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1271
|
+
<Property Name="AccessedTime" Type="Edm.DateTime"/>
|
1272
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
1273
|
+
<Property Name="CPUCount" Type="Edm.Byte"/>
|
1274
|
+
<Property Name="CPUMax" Type="Edm.Int32"/>
|
1275
|
+
<Property Name="CPUReserve" Type="Edm.Int32"/>
|
1276
|
+
<Property Name="CreationTime" Type="Edm.DateTime"/>
|
1277
|
+
<Property Name="DiskIO" Type="Edm.Int32"/>
|
1278
|
+
<Property Name="ExpectedCPUUtilization" Type="Edm.Int32"/>
|
1279
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
1280
|
+
<Property Name="LimitCPUForMigration" Type="Edm.Boolean"/>
|
1281
|
+
<Property Name="LimitCPUFunctionality" Type="Edm.Boolean"/>
|
1282
|
+
<Property Name="Memory" Type="Edm.Int32"/>
|
1283
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
1284
|
+
<Property Name="Name" Type="Edm.String"/>
|
1285
|
+
<Property Name="NetworkUtilization" Type="Edm.Int32"/>
|
1286
|
+
<Property Name="Owner" Type="VMM.UserAndRole"/>
|
1287
|
+
<Property Name="GrantedToList" Type="Collection(VMM.UserAndRole)" Nullable="false"/>
|
1288
|
+
<Property Name="RelativeWeight" Type="Edm.Int32"/>
|
1289
|
+
<Property Name="ShareSCSIBus" Type="Edm.Boolean"/>
|
1290
|
+
<Property Name="TotalVHDCapacity" Type="Edm.Int64"/>
|
1291
|
+
<Property Name="UndoDisksEnabled" Type="Edm.Boolean"/>
|
1292
|
+
<Property Name="Accessibility" Type="Edm.String"/>
|
1293
|
+
<Property Name="Description" Type="Edm.String"/>
|
1294
|
+
<Property Name="NumLockEnabled" Type="Edm.Boolean"/>
|
1295
|
+
<Property Name="Generation" Type="Edm.Int32"/>
|
1296
|
+
<NavigationProperty Name="VirtualNetworkAdapters" Relationship="VMM.HardwareProfile_VirtualNetworkAdapters" ToRole="VirtualNetworkAdapters" FromRole="HardwareProfile"/>
|
1297
|
+
<NavigationProperty Name="VirtualSCSIAdapters" Relationship="VMM.HardwareProfile_VirtualSCSIAdapters" ToRole="VirtualSCSIAdapters" FromRole="HardwareProfile"/>
|
1298
|
+
<NavigationProperty Name="VirtualDVDDrives" Relationship="VMM.HardwareProfile_VirtualDVDDrives" ToRole="VirtualDVDDrives" FromRole="HardwareProfile"/>
|
1299
|
+
</EntityType>
|
1300
|
+
<EntityType Name="RunAsAccount">
|
1301
|
+
<Key>
|
1302
|
+
<PropertyRef Name="ID"/>
|
1303
|
+
<PropertyRef Name="StampId"/>
|
1304
|
+
</Key>
|
1305
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1306
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1307
|
+
<Property Name="Name" Type="Edm.String"/>
|
1308
|
+
<Property Name="UserName" Type="Edm.String"/>
|
1309
|
+
<Property Name="Password" Type="Edm.String"/>
|
1310
|
+
<Property Name="Domain" Type="Edm.String"/>
|
1311
|
+
<Property Name="Enabled" Type="Edm.Boolean"/>
|
1312
|
+
<Property Name="GrantedToList" Type="Collection(VMM.UserAndRole)" Nullable="false"/>
|
1313
|
+
<Property Name="Owner" Type="VMM.UserAndRole"/>
|
1314
|
+
<Property Name="Description" Type="Edm.String"/>
|
1315
|
+
<Property Name="NoValidation" Type="Edm.Boolean"/>
|
1316
|
+
<Property Name="AddedTime" Type="Edm.DateTime"/>
|
1317
|
+
<Property Name="ModifiedTime" Type="Edm.DateTime"/>
|
1318
|
+
</EntityType>
|
1319
|
+
<EntityType Name="BasicStatistics">
|
1320
|
+
<Key>
|
1321
|
+
<PropertyRef Name="ID"/>
|
1322
|
+
</Key>
|
1323
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1324
|
+
<Property Name="Clouds" Type="Edm.Int32" Nullable="false"/>
|
1325
|
+
<Property Name="ServiceDeployments" Type="Edm.Int32" Nullable="false"/>
|
1326
|
+
<Property Name="ServiceDeploymentsNotRunning" Type="Edm.Int32" Nullable="false"/>
|
1327
|
+
<Property Name="ServiceDeploymentsRequiringAttention" Type="Edm.Int32" Nullable="false"/>
|
1328
|
+
<Property Name="ServiceVMs" Type="Edm.Int32" Nullable="false"/>
|
1329
|
+
<Property Name="StandaloneVMs" Type="Edm.Int32" Nullable="false"/>
|
1330
|
+
<Property Name="VMsNotRunning" Type="Edm.Int32" Nullable="false"/>
|
1331
|
+
<Property Name="VMsRequiringAttention" Type="Edm.Int32" Nullable="false"/>
|
1332
|
+
</EntityType>
|
1333
|
+
<EntityType Name="CloudCapacity">
|
1334
|
+
<Key>
|
1335
|
+
<PropertyRef Name="CloudId"/>
|
1336
|
+
<PropertyRef Name="StampId"/>
|
1337
|
+
</Key>
|
1338
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1339
|
+
<Property Name="CloudId" Type="Edm.Guid" Nullable="false"/>
|
1340
|
+
<Property Name="CPUCount" Type="Edm.Int64"/>
|
1341
|
+
<Property Name="UseCPUCountMaximum" Type="Edm.Boolean"/>
|
1342
|
+
<Property Name="CustomQuotaCount" Type="Edm.Int64"/>
|
1343
|
+
<Property Name="UseCustomQuotaCountMaximum" Type="Edm.Boolean"/>
|
1344
|
+
<Property Name="MemoryMB" Type="Edm.Int64"/>
|
1345
|
+
<Property Name="UseMemoryMBMaximum" Type="Edm.Boolean"/>
|
1346
|
+
<Property Name="StorageGB" Type="Edm.Int64"/>
|
1347
|
+
<Property Name="UseStorageGBMaximum" Type="Edm.Boolean"/>
|
1348
|
+
<Property Name="VMCount" Type="Edm.Int64"/>
|
1349
|
+
<Property Name="UseVMCountMaximum" Type="Edm.Boolean"/>
|
1350
|
+
</EntityType>
|
1351
|
+
<EntityType Name="VMNetworkGateway">
|
1352
|
+
<Key>
|
1353
|
+
<PropertyRef Name="ID"/>
|
1354
|
+
<PropertyRef Name="StampId"/>
|
1355
|
+
</Key>
|
1356
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1357
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1358
|
+
<Property Name="VMNetworkId" Type="Edm.Guid"/>
|
1359
|
+
<Property Name="Name" Type="Edm.String"/>
|
1360
|
+
<Property Name="Description" Type="Edm.String"/>
|
1361
|
+
<Property Name="IPSubnets" Type="Collection(Edm.String)" Nullable="false"/>
|
1362
|
+
<Property Name="RequiresVPN" Type="Edm.Boolean"/>
|
1363
|
+
<Property Name="RequiresNAT" Type="Edm.Boolean"/>
|
1364
|
+
<Property Name="EnableBGP" Type="Edm.Boolean"/>
|
1365
|
+
<Property Name="AutonomousSystemNumber" Type="Edm.Int64"/>
|
1366
|
+
<NavigationProperty Name="BGPPeers" Relationship="VMM.VMNetworkGateway_BGPPeers" ToRole="BGPPeers" FromRole="VMNetworkGateway"/>
|
1367
|
+
<NavigationProperty Name="NATConnections" Relationship="VMM.VMNetworkGateway_NATConnections" ToRole="NATConnections" FromRole="VMNetworkGateway"/>
|
1368
|
+
<NavigationProperty Name="VPNConnections" Relationship="VMM.VMNetworkGateway_VPNConnections" ToRole="VPNConnections" FromRole="VMNetworkGateway"/>
|
1369
|
+
</EntityType>
|
1370
|
+
<EntityType Name="NATConnection">
|
1371
|
+
<Key>
|
1372
|
+
<PropertyRef Name="ID"/>
|
1373
|
+
<PropertyRef Name="StampId"/>
|
1374
|
+
</Key>
|
1375
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1376
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1377
|
+
<Property Name="VMNetworkGatewayId" Type="Edm.Guid"/>
|
1378
|
+
<Property Name="Name" Type="Edm.String"/>
|
1379
|
+
<Property Name="Description" Type="Edm.String"/>
|
1380
|
+
<Property Name="Status" Type="Edm.String"/>
|
1381
|
+
<Property Name="MaximumBandwidthInboundKbps" Type="Edm.Decimal"/>
|
1382
|
+
<Property Name="MaximumBandwidthOutboundKbps" Type="Edm.Decimal"/>
|
1383
|
+
<NavigationProperty Name="Rules" Relationship="VMM.NATConnection_Rules" ToRole="Rules" FromRole="NATConnection"/>
|
1384
|
+
</EntityType>
|
1385
|
+
<EntityType Name="NATRule">
|
1386
|
+
<Key>
|
1387
|
+
<PropertyRef Name="ID"/>
|
1388
|
+
<PropertyRef Name="StampId"/>
|
1389
|
+
</Key>
|
1390
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1391
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1392
|
+
<Property Name="NATConnectionId" Type="Edm.Guid"/>
|
1393
|
+
<Property Name="Name" Type="Edm.String"/>
|
1394
|
+
<Property Name="ExternalIPAddress" Type="Edm.String"/>
|
1395
|
+
<Property Name="ExternalPort" Type="Edm.Int32"/>
|
1396
|
+
<Property Name="InternalIPAddress" Type="Edm.String"/>
|
1397
|
+
<Property Name="InternalPort" Type="Edm.Int32"/>
|
1398
|
+
<Property Name="Protocol" Type="Edm.String"/>
|
1399
|
+
</EntityType>
|
1400
|
+
<EntityType Name="BGPPeer">
|
1401
|
+
<Key>
|
1402
|
+
<PropertyRef Name="ID"/>
|
1403
|
+
<PropertyRef Name="StampId"/>
|
1404
|
+
</Key>
|
1405
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1406
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1407
|
+
<Property Name="VMNetworkGatewayId" Type="Edm.Guid"/>
|
1408
|
+
<Property Name="Name" Type="Edm.String"/>
|
1409
|
+
<Property Name="Description" Type="Edm.String"/>
|
1410
|
+
<Property Name="PeerIPAddress" Type="Edm.String"/>
|
1411
|
+
<Property Name="PeerASN" Type="Edm.Int64"/>
|
1412
|
+
</EntityType>
|
1413
|
+
<EntityType Name="VPNNetworkRoute">
|
1414
|
+
<Key>
|
1415
|
+
<PropertyRef Name="ID"/>
|
1416
|
+
<PropertyRef Name="StampId"/>
|
1417
|
+
</Key>
|
1418
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1419
|
+
<Property Name="ID" Type="Edm.Guid" Nullable="false"/>
|
1420
|
+
<Property Name="VPNConnectionId" Type="Edm.Guid"/>
|
1421
|
+
<Property Name="IPSubnet" Type="Edm.String"/>
|
1422
|
+
</EntityType>
|
1423
|
+
<EntityType Name="VMRoleSizeProfile">
|
1424
|
+
<Key>
|
1425
|
+
<PropertyRef Name="Name"/>
|
1426
|
+
<PropertyRef Name="StampId"/>
|
1427
|
+
</Key>
|
1428
|
+
<Property Name="StampId" Type="Edm.Guid" Nullable="false"/>
|
1429
|
+
<Property Name="Name" Type="Edm.String" Nullable="false"/>
|
1430
|
+
<Property Name="CpuCount" Type="Edm.Int64"/>
|
1431
|
+
<Property Name="MemoryInMB" Type="Edm.Int64"/>
|
1432
|
+
</EntityType>
|
1433
|
+
<Association Name="VirtualDiskDrive_VirtualHardDisk">
|
1434
|
+
<End Type="VMM.VirtualDiskDrive" Role="VirtualDiskDrive" Multiplicity="*"/>
|
1435
|
+
<End Type="VMM.VirtualHardDisk" Role="VirtualHardDisk" Multiplicity="0..1"/>
|
1436
|
+
</Association>
|
1437
|
+
<Association Name="VPNConnection_NetworkRoutes">
|
1438
|
+
<End Type="VMM.VPNNetworkRoute" Role="NetworkRoutes" Multiplicity="*"/>
|
1439
|
+
<End Type="VMM.VPNConnection" Role="VPNConnection" Multiplicity="*"/>
|
1440
|
+
</Association>
|
1441
|
+
<Association Name="UserRole_Clouds">
|
1442
|
+
<End Type="VMM.UserRole" Role="UserRole" Multiplicity="*"/>
|
1443
|
+
<End Type="VMM.Cloud" Role="Clouds" Multiplicity="*"/>
|
1444
|
+
</Association>
|
1445
|
+
<Association Name="VirtualMachine_Cloud">
|
1446
|
+
<End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
|
1447
|
+
<End Type="VMM.Cloud" Role="Cloud" Multiplicity="0..1"/>
|
1448
|
+
</Association>
|
1449
|
+
<Association Name="VirtualMachine_MostRecentTask">
|
1450
|
+
<End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
|
1451
|
+
<End Type="VMM.Job" Role="MostRecentTask" Multiplicity="0..1"/>
|
1452
|
+
</Association>
|
1453
|
+
<Association Name="VirtualMachine_FailedJob">
|
1454
|
+
<End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
|
1455
|
+
<End Type="VMM.Job" Role="FailedJob" Multiplicity="0..1"/>
|
1456
|
+
</Association>
|
1457
|
+
<Association Name="VirtualMachine_VirtualNetworkAdapters">
|
1458
|
+
<End Type="VMM.VirtualNetworkAdapter" Role="VirtualNetworkAdapters" Multiplicity="*"/>
|
1459
|
+
<End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
|
1460
|
+
</Association>
|
1461
|
+
<Association Name="VirtualMachine_VMCheckpoints">
|
1462
|
+
<End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
|
1463
|
+
<End Type="VMM.VMCheckPoint" Role="VMCheckpoints" Multiplicity="*"/>
|
1464
|
+
</Association>
|
1465
|
+
<Association Name="VirtualMachine_VirtualSCSIAdapters">
|
1466
|
+
<End Type="VMM.VirtualSCSIAdapter" Role="VirtualSCSIAdapters" Multiplicity="*"/>
|
1467
|
+
<End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
|
1468
|
+
</Association>
|
1469
|
+
<Association Name="VirtualMachine_VirtualHardDisks">
|
1470
|
+
<End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
|
1471
|
+
<End Type="VMM.VirtualHardDisk" Role="VirtualHardDisks" Multiplicity="*"/>
|
1472
|
+
</Association>
|
1473
|
+
<Association Name="VirtualMachine_VirtualDVDDrives">
|
1474
|
+
<End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
|
1475
|
+
<End Type="VMM.VirtualDVDDrive" Role="VirtualDVDDrives" Multiplicity="*"/>
|
1476
|
+
</Association>
|
1477
|
+
<Association Name="VirtualMachine_VirtualDiskDrives">
|
1478
|
+
<End Type="VMM.VirtualMachine" Role="VirtualMachine" Multiplicity="*"/>
|
1479
|
+
<End Type="VMM.VirtualDiskDrive" Role="VirtualDiskDrives" Multiplicity="*"/>
|
1480
|
+
</Association>
|
1481
|
+
<Association Name="VirtualDVDDrive_ISO">
|
1482
|
+
<End Type="VMM.VirtualDVDDrive" Role="VirtualDVDDrive" Multiplicity="*"/>
|
1483
|
+
<End Type="VMM.ISO" Role="ISO" Multiplicity="0..1"/>
|
1484
|
+
</Association>
|
1485
|
+
<Association Name="VMTemplate_VirtualNetworkAdapters">
|
1486
|
+
<End Type="VMM.VirtualNetworkAdapter" Role="VirtualNetworkAdapters" Multiplicity="*"/>
|
1487
|
+
<End Type="VMM.VMTemplate" Role="VMTemplate" Multiplicity="*"/>
|
1488
|
+
</Association>
|
1489
|
+
<Association Name="VMTemplate_VirtualSCSIAdapters">
|
1490
|
+
<End Type="VMM.VirtualSCSIAdapter" Role="VirtualSCSIAdapters" Multiplicity="*"/>
|
1491
|
+
<End Type="VMM.VMTemplate" Role="VMTemplate" Multiplicity="*"/>
|
1492
|
+
</Association>
|
1493
|
+
<Association Name="VMTemplate_VirtualHardDisks">
|
1494
|
+
<End Type="VMM.VirtualHardDisk" Role="VirtualHardDisks" Multiplicity="*"/>
|
1495
|
+
<End Type="VMM.VMTemplate" Role="VMTemplate" Multiplicity="*"/>
|
1496
|
+
</Association>
|
1497
|
+
<Association Name="VMTemplate_VirtualDVDDrives">
|
1498
|
+
<End Type="VMM.VirtualDVDDrive" Role="VirtualDVDDrives" Multiplicity="*"/>
|
1499
|
+
<End Type="VMM.VMTemplate" Role="VMTemplate" Multiplicity="*"/>
|
1500
|
+
</Association>
|
1501
|
+
<Association Name="VMTemplate_VirtualDiskDrives">
|
1502
|
+
<End Type="VMM.VirtualDiskDrive" Role="VirtualDiskDrives" Multiplicity="*"/>
|
1503
|
+
<End Type="VMM.VMTemplate" Role="VMTemplate" Multiplicity="*"/>
|
1504
|
+
</Association>
|
1505
|
+
<Association Name="ISO_LibraryShare">
|
1506
|
+
<End Type="VMM.ISO" Role="ISO" Multiplicity="*"/>
|
1507
|
+
<End Type="VMM.LibraryShare" Role="LibraryShare" Multiplicity="0..1"/>
|
1508
|
+
</Association>
|
1509
|
+
<Association Name="Cloud_Capacity">
|
1510
|
+
<End Type="VMM.CloudCapacity" Role="Capacity" Multiplicity="*"/>
|
1511
|
+
<End Type="VMM.Cloud" Role="Cloud" Multiplicity="*"/>
|
1512
|
+
</Association>
|
1513
|
+
<Association Name="Cloud_LogicalNetworks">
|
1514
|
+
<End Type="VMM.LogicalNetwork" Role="LogicalNetworks" Multiplicity="*"/>
|
1515
|
+
<End Type="VMM.Cloud" Role="Cloud" Multiplicity="*"/>
|
1516
|
+
</Association>
|
1517
|
+
<Association Name="Cloud_CapabilityProfiles">
|
1518
|
+
<End Type="VMM.Cloud" Role="Cloud" Multiplicity="*"/>
|
1519
|
+
<End Type="VMM.CapabilityProfile" Role="CapabilityProfiles" Multiplicity="*"/>
|
1520
|
+
</Association>
|
1521
|
+
<Association Name="Cloud_LibraryShares">
|
1522
|
+
<End Type="VMM.Cloud" Role="Cloud" Multiplicity="*"/>
|
1523
|
+
<End Type="VMM.LibraryShare" Role="LibraryShares" Multiplicity="*"/>
|
1524
|
+
</Association>
|
1525
|
+
<Association Name="Cloud_QuotaAndUsageComponents">
|
1526
|
+
<End Type="VMM.QuotaAndUsageComponent" Role="QuotaAndUsageComponents" Multiplicity="*"/>
|
1527
|
+
<End Type="VMM.Cloud" Role="Cloud" Multiplicity="*"/>
|
1528
|
+
</Association>
|
1529
|
+
<Association Name="VMCheckPoint_ParentCheckPoint">
|
1530
|
+
<End Type="VMM.VMCheckPoint" Role="ParentCheckPoint" Multiplicity="0..1"/>
|
1531
|
+
<End Type="VMM.VMCheckPoint" Role="VMCheckPoint" Multiplicity="*"/>
|
1532
|
+
</Association>
|
1533
|
+
<Association Name="ServiceTemplate_ComputerTierTemplates">
|
1534
|
+
<End Type="VMM.ServiceTemplate" Role="ServiceTemplate" Multiplicity="*"/>
|
1535
|
+
<End Type="VMM.ComputerTierTemplate" Role="ComputerTierTemplates" Multiplicity="*"/>
|
1536
|
+
</Association>
|
1537
|
+
<Association Name="ServiceTemplate_ApplicationHostTemplates">
|
1538
|
+
<End Type="VMM.ServiceTemplate" Role="ServiceTemplate" Multiplicity="*"/>
|
1539
|
+
<End Type="VMM.ApplicationHostTemplate" Role="ApplicationHostTemplates" Multiplicity="*"/>
|
1540
|
+
</Association>
|
1541
|
+
<Association Name="Service_FailedJob">
|
1542
|
+
<End Type="VMM.Service" Role="Service" Multiplicity="*"/>
|
1543
|
+
<End Type="VMM.Job" Role="FailedJob" Multiplicity="0..1"/>
|
1544
|
+
</Association>
|
1545
|
+
<Association Name="Service_PendingServiceTemplate">
|
1546
|
+
<End Type="VMM.ServiceTemplate" Role="PendingServiceTemplate" Multiplicity="0..1"/>
|
1547
|
+
<End Type="VMM.Service" Role="Service" Multiplicity="*"/>
|
1548
|
+
</Association>
|
1549
|
+
<Association Name="Service_ServiceTemplate">
|
1550
|
+
<End Type="VMM.ServiceTemplate" Role="ServiceTemplate" Multiplicity="0..1"/>
|
1551
|
+
<End Type="VMM.Service" Role="Service" Multiplicity="*"/>
|
1552
|
+
</Association>
|
1553
|
+
<Association Name="Service_Cloud">
|
1554
|
+
<End Type="VMM.Service" Role="Service" Multiplicity="*"/>
|
1555
|
+
<End Type="VMM.Cloud" Role="Cloud" Multiplicity="0..1"/>
|
1556
|
+
</Association>
|
1557
|
+
<Association Name="Service_ComputerTiers">
|
1558
|
+
<End Type="VMM.Service" Role="Service" Multiplicity="*"/>
|
1559
|
+
<End Type="VMM.ComputerTier" Role="ComputerTiers" Multiplicity="*"/>
|
1560
|
+
</Association>
|
1561
|
+
<Association Name="Service_MostRecentTask">
|
1562
|
+
<End Type="VMM.Service" Role="Service" Multiplicity="*"/>
|
1563
|
+
<End Type="VMM.Job" Role="MostRecentTask" Multiplicity="0..1"/>
|
1564
|
+
</Association>
|
1565
|
+
<Association Name="Service_ApplicationHosts">
|
1566
|
+
<End Type="VMM.Service" Role="Service" Multiplicity="*"/>
|
1567
|
+
<End Type="VMM.ApplicationHost" Role="ApplicationHosts" Multiplicity="*"/>
|
1568
|
+
</Association>
|
1569
|
+
<Association Name="ComputerTierTemplate_VMTemplate">
|
1570
|
+
<End Type="VMM.VMTemplate" Role="VMTemplate" Multiplicity="0..1"/>
|
1571
|
+
<End Type="VMM.ComputerTierTemplate" Role="ComputerTierTemplate" Multiplicity="*"/>
|
1572
|
+
</Association>
|
1573
|
+
<Association Name="ComputerTier_ComputerTierTemplate">
|
1574
|
+
<End Type="VMM.ComputerTierTemplate" Role="ComputerTierTemplate" Multiplicity="0..1"/>
|
1575
|
+
<End Type="VMM.ComputerTier" Role="ComputerTier" Multiplicity="*"/>
|
1576
|
+
</Association>
|
1577
|
+
<Association Name="ComputerTier_VMs">
|
1578
|
+
<End Type="VMM.VirtualMachine" Role="VMs" Multiplicity="*"/>
|
1579
|
+
<End Type="VMM.ComputerTier" Role="ComputerTier" Multiplicity="*"/>
|
1580
|
+
</Association>
|
1581
|
+
<Association Name="ComputerTier_MostRecentTask">
|
1582
|
+
<End Type="VMM.Job" Role="MostRecentTask" Multiplicity="0..1"/>
|
1583
|
+
<End Type="VMM.ComputerTier" Role="ComputerTier" Multiplicity="*"/>
|
1584
|
+
</Association>
|
1585
|
+
<Association Name="ApplicationHost_ApplicationHostTemplate">
|
1586
|
+
<End Type="VMM.ApplicationHostTemplate" Role="ApplicationHostTemplate" Multiplicity="0..1"/>
|
1587
|
+
<End Type="VMM.ApplicationHost" Role="ApplicationHost" Multiplicity="*"/>
|
1588
|
+
</Association>
|
1589
|
+
<Association Name="VMNetwork_MostRecentTask">
|
1590
|
+
<End Type="VMM.VMNetwork" Role="VMNetwork" Multiplicity="*"/>
|
1591
|
+
<End Type="VMM.Job" Role="MostRecentTask" Multiplicity="0..1"/>
|
1592
|
+
</Association>
|
1593
|
+
<Association Name="VMNetwork_VMNetworkGateways">
|
1594
|
+
<End Type="VMM.VMNetworkGateway" Role="VMNetworkGateways" Multiplicity="*"/>
|
1595
|
+
<End Type="VMM.VMNetwork" Role="VMNetwork" Multiplicity="*"/>
|
1596
|
+
</Association>
|
1597
|
+
<Association Name="HardwareProfile_VirtualNetworkAdapters">
|
1598
|
+
<End Type="VMM.VirtualNetworkAdapter" Role="VirtualNetworkAdapters" Multiplicity="*"/>
|
1599
|
+
<End Type="VMM.HardwareProfile" Role="HardwareProfile" Multiplicity="*"/>
|
1600
|
+
</Association>
|
1601
|
+
<Association Name="HardwareProfile_VirtualSCSIAdapters">
|
1602
|
+
<End Type="VMM.VirtualSCSIAdapter" Role="VirtualSCSIAdapters" Multiplicity="*"/>
|
1603
|
+
<End Type="VMM.HardwareProfile" Role="HardwareProfile" Multiplicity="*"/>
|
1604
|
+
</Association>
|
1605
|
+
<Association Name="HardwareProfile_VirtualDVDDrives">
|
1606
|
+
<End Type="VMM.VirtualDVDDrive" Role="VirtualDVDDrives" Multiplicity="*"/>
|
1607
|
+
<End Type="VMM.HardwareProfile" Role="HardwareProfile" Multiplicity="*"/>
|
1608
|
+
</Association>
|
1609
|
+
<Association Name="VMNetworkGateway_BGPPeers">
|
1610
|
+
<End Type="VMM.VMNetworkGateway" Role="VMNetworkGateway" Multiplicity="*"/>
|
1611
|
+
<End Type="VMM.BGPPeer" Role="BGPPeers" Multiplicity="*"/>
|
1612
|
+
</Association>
|
1613
|
+
<Association Name="VMNetworkGateway_NATConnections">
|
1614
|
+
<End Type="VMM.VMNetworkGateway" Role="VMNetworkGateway" Multiplicity="*"/>
|
1615
|
+
<End Type="VMM.NATConnection" Role="NATConnections" Multiplicity="*"/>
|
1616
|
+
</Association>
|
1617
|
+
<Association Name="VMNetworkGateway_VPNConnections">
|
1618
|
+
<End Type="VMM.VPNConnection" Role="VPNConnections" Multiplicity="*"/>
|
1619
|
+
<End Type="VMM.VMNetworkGateway" Role="VMNetworkGateway" Multiplicity="*"/>
|
1620
|
+
</Association>
|
1621
|
+
<Association Name="NATConnection_Rules">
|
1622
|
+
<End Type="VMM.NATRule" Role="Rules" Multiplicity="*"/>
|
1623
|
+
<End Type="VMM.NATConnection" Role="NATConnection" Multiplicity="*"/>
|
1624
|
+
</Association>
|
1625
|
+
<EntityContainer Name="VMM" m:IsDefaultEntityContainer="true">
|
1626
|
+
<EntitySet Name="PerformanceData" EntityType="VMM.PerformanceData"/>
|
1627
|
+
<EntitySet Name="GuestInfos" EntityType="VMM.GuestInfo"/>
|
1628
|
+
<EntitySet Name="UserRoles" EntityType="VMM.UserRole"/>
|
1629
|
+
<EntitySet Name="VirtualMachines" EntityType="VMM.VirtualMachine"/>
|
1630
|
+
<EntitySet Name="VirtualDVDDrives" EntityType="VMM.VirtualDVDDrive"/>
|
1631
|
+
<EntitySet Name="VirtualHardDisks" EntityType="VMM.VirtualHardDisk"/>
|
1632
|
+
<EntitySet Name="VMTemplates" EntityType="VMM.VMTemplate"/>
|
1633
|
+
<EntitySet Name="VirtualNetworkAdapters" EntityType="VMM.VirtualNetworkAdapter"/>
|
1634
|
+
<EntitySet Name="VirtualSCSIAdapters" EntityType="VMM.VirtualSCSIAdapter"/>
|
1635
|
+
<EntitySet Name="ISOs" EntityType="VMM.ISO"/>
|
1636
|
+
<EntitySet Name="LogicalNetworks" EntityType="VMM.LogicalNetwork"/>
|
1637
|
+
<EntitySet Name="Jobs" EntityType="VMM.Job"/>
|
1638
|
+
<EntitySet Name="CapabilityProfiles" EntityType="VMM.CapabilityProfile"/>
|
1639
|
+
<EntitySet Name="Clouds" EntityType="VMM.Cloud"/>
|
1640
|
+
<EntitySet Name="VirtualDiskDrives" EntityType="VMM.VirtualDiskDrive"/>
|
1641
|
+
<EntitySet Name="VMCheckPoints" EntityType="VMM.VMCheckPoint"/>
|
1642
|
+
<EntitySet Name="ServiceTemplates" EntityType="VMM.ServiceTemplate"/>
|
1643
|
+
<EntitySet Name="Services" EntityType="VMM.Service"/>
|
1644
|
+
<EntitySet Name="ComputerTierTemplates" EntityType="VMM.ComputerTierTemplate"/>
|
1645
|
+
<EntitySet Name="ComputerTiers" EntityType="VMM.ComputerTier"/>
|
1646
|
+
<EntitySet Name="LibraryShares" EntityType="VMM.LibraryShare"/>
|
1647
|
+
<EntitySet Name="ApplicationHosts" EntityType="VMM.ApplicationHost"/>
|
1648
|
+
<EntitySet Name="ApplicationHostTemplates" EntityType="VMM.ApplicationHostTemplate"/>
|
1649
|
+
<EntitySet Name="VMNetworks" EntityType="VMM.VMNetwork"/>
|
1650
|
+
<EntitySet Name="QuotaAndUsageComponents" EntityType="VMM.QuotaAndUsageComponent"/>
|
1651
|
+
<EntitySet Name="StaticIPAddressPools" EntityType="VMM.StaticIPAddressPool"/>
|
1652
|
+
<EntitySet Name="VMSubnets" EntityType="VMM.VMSubnet"/>
|
1653
|
+
<EntitySet Name="HardwareProfiles" EntityType="VMM.HardwareProfile"/>
|
1654
|
+
<EntitySet Name="RunAsAccounts" EntityType="VMM.RunAsAccount"/>
|
1655
|
+
<EntitySet Name="BasicStatistics" EntityType="VMM.BasicStatistics"/>
|
1656
|
+
<EntitySet Name="CloudCapacities" EntityType="VMM.CloudCapacity"/>
|
1657
|
+
<EntitySet Name="VMNetworkGateways" EntityType="VMM.VMNetworkGateway"/>
|
1658
|
+
<EntitySet Name="VPNConnections" EntityType="VMM.VPNConnection"/>
|
1659
|
+
<EntitySet Name="NATConnections" EntityType="VMM.NATConnection"/>
|
1660
|
+
<EntitySet Name="NATRules" EntityType="VMM.NATRule"/>
|
1661
|
+
<EntitySet Name="BGPPeers" EntityType="VMM.BGPPeer"/>
|
1662
|
+
<EntitySet Name="VPNNetworkRoutes" EntityType="VMM.VPNNetworkRoute"/>
|
1663
|
+
<EntitySet Name="VMRoleSizeProfiles" EntityType="VMM.VMRoleSizeProfile"/>
|
1664
|
+
<EntitySet Name="CloudServices" EntityType="MicrosoftCompute.CloudService"/>
|
1665
|
+
<EntitySet Name="CloudResource" EntityType="MicrosoftCompute.CloudResource"/>
|
1666
|
+
<EntitySet Name="VMRole" EntityType="MicrosoftCompute.VMRole"/>
|
1667
|
+
<EntitySet Name="VM" EntityType="MicrosoftCompute.VM"/>
|
1668
|
+
<EntitySet Name="VMRoleVMDisk" EntityType="MicrosoftCompute.VMRoleVMDisk"/>
|
1669
|
+
<EntitySet Name="VMRoleVMNic" EntityType="MicrosoftCompute.VMRoleVMNic"/>
|
1670
|
+
<FunctionImport Name="Expand" IsBindable="true" m:IsAlwaysBindable="true">
|
1671
|
+
<Parameter Name="VirtualDiskDrive" Type="VMM.VirtualDiskDrive"/>
|
1672
|
+
<Parameter Name="VirtualHardDiskSizeGB" Type="Edm.Int32"/>
|
1673
|
+
</FunctionImport>
|
1674
|
+
<FunctionImport Name="Refresh" ReturnType="VMM.VPNConnection" IsBindable="true" EntitySet="VPNConnections" m:IsAlwaysBindable="true">
|
1675
|
+
<Parameter Name="VPNConnection" Type="VMM.VPNConnection"/>
|
1676
|
+
</FunctionImport>
|
1677
|
+
<FunctionImport Name="Scale" IsBindable="true" m:IsAlwaysBindable="true">
|
1678
|
+
<Parameter Name="VMRole" Type="MicrosoftCompute.VMRole"/>
|
1679
|
+
<Parameter Name="InstanceCount" Type="Edm.Int32"/>
|
1680
|
+
</FunctionImport>
|
1681
|
+
<FunctionImport Name="Repair" IsBindable="true" m:IsAlwaysBindable="true">
|
1682
|
+
<Parameter Name="VMRole" Type="MicrosoftCompute.VMRole"/>
|
1683
|
+
<Parameter Name="Skip" Type="Edm.Boolean"/>
|
1684
|
+
</FunctionImport>
|
1685
|
+
<FunctionImport Name="Start" IsBindable="true" m:IsAlwaysBindable="true">
|
1686
|
+
<Parameter Name="VM" Type="MicrosoftCompute.VM"/>
|
1687
|
+
</FunctionImport>
|
1688
|
+
<FunctionImport Name="Stop" IsBindable="true" m:IsAlwaysBindable="true">
|
1689
|
+
<Parameter Name="VM" Type="MicrosoftCompute.VM"/>
|
1690
|
+
</FunctionImport>
|
1691
|
+
<FunctionImport Name="Shutdown" IsBindable="true" m:IsAlwaysBindable="true">
|
1692
|
+
<Parameter Name="VM" Type="MicrosoftCompute.VM"/>
|
1693
|
+
</FunctionImport>
|
1694
|
+
<FunctionImport Name="Restart" IsBindable="true" m:IsAlwaysBindable="true">
|
1695
|
+
<Parameter Name="VM" Type="MicrosoftCompute.VM"/>
|
1696
|
+
</FunctionImport>
|
1697
|
+
<AssociationSet Name="UserRoleCloudRelationship" Association="VMM.UserRole_Clouds">
|
1698
|
+
<End Role="UserRole" EntitySet="UserRoles"/>
|
1699
|
+
<End Role="Clouds" EntitySet="Clouds"/>
|
1700
|
+
</AssociationSet>
|
1701
|
+
<AssociationSet Name="VMCloudRelationship" Association="VMM.VirtualMachine_Cloud">
|
1702
|
+
<End Role="VirtualMachine" EntitySet="VirtualMachines"/>
|
1703
|
+
<End Role="Cloud" EntitySet="Clouds"/>
|
1704
|
+
</AssociationSet>
|
1705
|
+
<AssociationSet Name="VMMostRecentTaskRelationship" Association="VMM.VirtualMachine_MostRecentTask">
|
1706
|
+
<End Role="VirtualMachine" EntitySet="VirtualMachines"/>
|
1707
|
+
<End Role="MostRecentTask" EntitySet="Jobs"/>
|
1708
|
+
</AssociationSet>
|
1709
|
+
<AssociationSet Name="VMFailedJobRelationship" Association="VMM.VirtualMachine_FailedJob">
|
1710
|
+
<End Role="VirtualMachine" EntitySet="VirtualMachines"/>
|
1711
|
+
<End Role="FailedJob" EntitySet="Jobs"/>
|
1712
|
+
</AssociationSet>
|
1713
|
+
<AssociationSet Name="VMVirtualNetworkAdapterRelationship" Association="VMM.VirtualMachine_VirtualNetworkAdapters">
|
1714
|
+
<End Role="VirtualMachine" EntitySet="VirtualMachines"/>
|
1715
|
+
<End Role="VirtualNetworkAdapters" EntitySet="VirtualNetworkAdapters"/>
|
1716
|
+
</AssociationSet>
|
1717
|
+
<AssociationSet Name="VMVMCheckPointsRelationship" Association="VMM.VirtualMachine_VMCheckpoints">
|
1718
|
+
<End Role="VirtualMachine" EntitySet="VirtualMachines"/>
|
1719
|
+
<End Role="VMCheckpoints" EntitySet="VMCheckPoints"/>
|
1720
|
+
</AssociationSet>
|
1721
|
+
<AssociationSet Name="VMSCSIAdaptersRelationship" Association="VMM.VirtualMachine_VirtualSCSIAdapters">
|
1722
|
+
<End Role="VirtualMachine" EntitySet="VirtualMachines"/>
|
1723
|
+
<End Role="VirtualSCSIAdapters" EntitySet="VirtualSCSIAdapters"/>
|
1724
|
+
</AssociationSet>
|
1725
|
+
<AssociationSet Name="VMVirtualHardDisksRelationship" Association="VMM.VirtualMachine_VirtualHardDisks">
|
1726
|
+
<End Role="VirtualMachine" EntitySet="VirtualMachines"/>
|
1727
|
+
<End Role="VirtualHardDisks" EntitySet="VirtualHardDisks"/>
|
1728
|
+
</AssociationSet>
|
1729
|
+
<AssociationSet Name="VMVirtualDVDDrivesRelationship" Association="VMM.VirtualMachine_VirtualDVDDrives">
|
1730
|
+
<End Role="VirtualMachine" EntitySet="VirtualMachines"/>
|
1731
|
+
<End Role="VirtualDVDDrives" EntitySet="VirtualDVDDrives"/>
|
1732
|
+
</AssociationSet>
|
1733
|
+
<AssociationSet Name="VMVirtualDiskDrivesRelationship" Association="VMM.VirtualMachine_VirtualDiskDrives">
|
1734
|
+
<End Role="VirtualMachine" EntitySet="VirtualMachines"/>
|
1735
|
+
<End Role="VirtualDiskDrives" EntitySet="VirtualDiskDrives"/>
|
1736
|
+
</AssociationSet>
|
1737
|
+
<AssociationSet Name="VirtualDVDDriveISORelationship" Association="VMM.VirtualDVDDrive_ISO">
|
1738
|
+
<End Role="VirtualDVDDrive" EntitySet="VirtualDVDDrives"/>
|
1739
|
+
<End Role="ISO" EntitySet="ISOs"/>
|
1740
|
+
</AssociationSet>
|
1741
|
+
<AssociationSet Name="VMMTemplateVirtualNetworkAdapterRelationship" Association="VMM.VMTemplate_VirtualNetworkAdapters">
|
1742
|
+
<End Role="VMTemplate" EntitySet="VMTemplates"/>
|
1743
|
+
<End Role="VirtualNetworkAdapters" EntitySet="VirtualNetworkAdapters"/>
|
1744
|
+
</AssociationSet>
|
1745
|
+
<AssociationSet Name="VMTemplateSCSIAdaptersRelationship" Association="VMM.VMTemplate_VirtualSCSIAdapters">
|
1746
|
+
<End Role="VMTemplate" EntitySet="VMTemplates"/>
|
1747
|
+
<End Role="VirtualSCSIAdapters" EntitySet="VirtualSCSIAdapters"/>
|
1748
|
+
</AssociationSet>
|
1749
|
+
<AssociationSet Name="VMTemplateVirtualHardDisksRelationship" Association="VMM.VMTemplate_VirtualHardDisks">
|
1750
|
+
<End Role="VMTemplate" EntitySet="VMTemplates"/>
|
1751
|
+
<End Role="VirtualHardDisks" EntitySet="VirtualHardDisks"/>
|
1752
|
+
</AssociationSet>
|
1753
|
+
<AssociationSet Name="VMTemplateVirtualDVDDrivesRelationship" Association="VMM.VMTemplate_VirtualDVDDrives">
|
1754
|
+
<End Role="VMTemplate" EntitySet="VMTemplates"/>
|
1755
|
+
<End Role="VirtualDVDDrives" EntitySet="VirtualDVDDrives"/>
|
1756
|
+
</AssociationSet>
|
1757
|
+
<AssociationSet Name="VMTemplateVirtualDiskDrivesRelationship" Association="VMM.VMTemplate_VirtualDiskDrives">
|
1758
|
+
<End Role="VMTemplate" EntitySet="VMTemplates"/>
|
1759
|
+
<End Role="VirtualDiskDrives" EntitySet="VirtualDiskDrives"/>
|
1760
|
+
</AssociationSet>
|
1761
|
+
<AssociationSet Name="LibraryShareISORelationship" Association="VMM.ISO_LibraryShare">
|
1762
|
+
<End Role="ISO" EntitySet="ISOs"/>
|
1763
|
+
<End Role="LibraryShare" EntitySet="LibraryShares"/>
|
1764
|
+
</AssociationSet>
|
1765
|
+
<AssociationSet Name="CloudCapacityRelationship" Association="VMM.Cloud_Capacity">
|
1766
|
+
<End Role="Cloud" EntitySet="Clouds"/>
|
1767
|
+
<End Role="Capacity" EntitySet="CloudCapacities"/>
|
1768
|
+
</AssociationSet>
|
1769
|
+
<AssociationSet Name="LogicalNetworkCloudRelationship" Association="VMM.Cloud_LogicalNetworks">
|
1770
|
+
<End Role="Cloud" EntitySet="Clouds"/>
|
1771
|
+
<End Role="LogicalNetworks" EntitySet="LogicalNetworks"/>
|
1772
|
+
</AssociationSet>
|
1773
|
+
<AssociationSet Name="CloudCapabilityProfileRelationship" Association="VMM.Cloud_CapabilityProfiles">
|
1774
|
+
<End Role="Cloud" EntitySet="Clouds"/>
|
1775
|
+
<End Role="CapabilityProfiles" EntitySet="CapabilityProfiles"/>
|
1776
|
+
</AssociationSet>
|
1777
|
+
<AssociationSet Name="LibraryShareCloudRelationship" Association="VMM.Cloud_LibraryShares">
|
1778
|
+
<End Role="Cloud" EntitySet="Clouds"/>
|
1779
|
+
<End Role="LibraryShares" EntitySet="LibraryShares"/>
|
1780
|
+
</AssociationSet>
|
1781
|
+
<AssociationSet Name="CloudQuotaAndUsageComponentRelationship" Association="VMM.Cloud_QuotaAndUsageComponents">
|
1782
|
+
<End Role="Cloud" EntitySet="Clouds"/>
|
1783
|
+
<End Role="QuotaAndUsageComponents" EntitySet="QuotaAndUsageComponents"/>
|
1784
|
+
</AssociationSet>
|
1785
|
+
<AssociationSet Name="VirtualDiskDriveVirtualHardDiskRelationship" Association="VMM.VirtualDiskDrive_VirtualHardDisk">
|
1786
|
+
<End Role="VirtualDiskDrive" EntitySet="VirtualDiskDrives"/>
|
1787
|
+
<End Role="VirtualHardDisk" EntitySet="VirtualHardDisks"/>
|
1788
|
+
</AssociationSet>
|
1789
|
+
<AssociationSet Name="VMCheckPointVMCheckPointRelationship" Association="VMM.VMCheckPoint_ParentCheckPoint">
|
1790
|
+
<End Role="VMCheckPoint" EntitySet="VMCheckPoints"/>
|
1791
|
+
<End Role="ParentCheckPoint" EntitySet="VMCheckPoints"/>
|
1792
|
+
</AssociationSet>
|
1793
|
+
<AssociationSet Name="ServiceTemplateComputerTierTemplateRelationship" Association="VMM.ServiceTemplate_ComputerTierTemplates">
|
1794
|
+
<End Role="ServiceTemplate" EntitySet="ServiceTemplates"/>
|
1795
|
+
<End Role="ComputerTierTemplates" EntitySet="ComputerTierTemplates"/>
|
1796
|
+
</AssociationSet>
|
1797
|
+
<AssociationSet Name="ApplicationHostTemplateServiceTemplateRelationship" Association="VMM.ServiceTemplate_ApplicationHostTemplates">
|
1798
|
+
<End Role="ServiceTemplate" EntitySet="ServiceTemplates"/>
|
1799
|
+
<End Role="ApplicationHostTemplates" EntitySet="ApplicationHostTemplates"/>
|
1800
|
+
</AssociationSet>
|
1801
|
+
<AssociationSet Name="ServiceFailedJobRelationship" Association="VMM.Service_FailedJob">
|
1802
|
+
<End Role="Service" EntitySet="Services"/>
|
1803
|
+
<End Role="FailedJob" EntitySet="Jobs"/>
|
1804
|
+
</AssociationSet>
|
1805
|
+
<AssociationSet Name="ServicePendingServiceTemplateRelationship" Association="VMM.Service_PendingServiceTemplate">
|
1806
|
+
<End Role="Service" EntitySet="Services"/>
|
1807
|
+
<End Role="PendingServiceTemplate" EntitySet="ServiceTemplates"/>
|
1808
|
+
</AssociationSet>
|
1809
|
+
<AssociationSet Name="ServiceServiceTemplateRelationship" Association="VMM.Service_ServiceTemplate">
|
1810
|
+
<End Role="Service" EntitySet="Services"/>
|
1811
|
+
<End Role="ServiceTemplate" EntitySet="ServiceTemplates"/>
|
1812
|
+
</AssociationSet>
|
1813
|
+
<AssociationSet Name="ServiceCloudRelationship" Association="VMM.Service_Cloud">
|
1814
|
+
<End Role="Service" EntitySet="Services"/>
|
1815
|
+
<End Role="Cloud" EntitySet="Clouds"/>
|
1816
|
+
</AssociationSet>
|
1817
|
+
<AssociationSet Name="ServiceComputerTierRelationship" Association="VMM.Service_ComputerTiers">
|
1818
|
+
<End Role="Service" EntitySet="Services"/>
|
1819
|
+
<End Role="ComputerTiers" EntitySet="ComputerTiers"/>
|
1820
|
+
</AssociationSet>
|
1821
|
+
<AssociationSet Name="ServiceMostRecentTaskRelationship" Association="VMM.Service_MostRecentTask">
|
1822
|
+
<End Role="Service" EntitySet="Services"/>
|
1823
|
+
<End Role="MostRecentTask" EntitySet="Jobs"/>
|
1824
|
+
</AssociationSet>
|
1825
|
+
<AssociationSet Name="ApplicationHostServiceRelationship" Association="VMM.Service_ApplicationHosts">
|
1826
|
+
<End Role="Service" EntitySet="Services"/>
|
1827
|
+
<End Role="ApplicationHosts" EntitySet="ApplicationHosts"/>
|
1828
|
+
</AssociationSet>
|
1829
|
+
<AssociationSet Name="ComputerTierTemplateVMTemplateRelationship" Association="VMM.ComputerTierTemplate_VMTemplate">
|
1830
|
+
<End Role="ComputerTierTemplate" EntitySet="ComputerTierTemplates"/>
|
1831
|
+
<End Role="VMTemplate" EntitySet="VMTemplates"/>
|
1832
|
+
</AssociationSet>
|
1833
|
+
<AssociationSet Name="ComputerTierComputerTierTemplateRelationship" Association="VMM.ComputerTier_ComputerTierTemplate">
|
1834
|
+
<End Role="ComputerTier" EntitySet="ComputerTiers"/>
|
1835
|
+
<End Role="ComputerTierTemplate" EntitySet="ComputerTierTemplates"/>
|
1836
|
+
</AssociationSet>
|
1837
|
+
<AssociationSet Name="ComputerTierVMRelationship" Association="VMM.ComputerTier_VMs">
|
1838
|
+
<End Role="ComputerTier" EntitySet="ComputerTiers"/>
|
1839
|
+
<End Role="VMs" EntitySet="VirtualMachines"/>
|
1840
|
+
</AssociationSet>
|
1841
|
+
<AssociationSet Name="ComputerTierMostRecentTaskRelationship" Association="VMM.ComputerTier_MostRecentTask">
|
1842
|
+
<End Role="ComputerTier" EntitySet="ComputerTiers"/>
|
1843
|
+
<End Role="MostRecentTask" EntitySet="Jobs"/>
|
1844
|
+
</AssociationSet>
|
1845
|
+
<AssociationSet Name="ApplicationHostApplicationHostTemplateRelationship" Association="VMM.ApplicationHost_ApplicationHostTemplate">
|
1846
|
+
<End Role="ApplicationHost" EntitySet="ApplicationHosts"/>
|
1847
|
+
<End Role="ApplicationHostTemplate" EntitySet="ApplicationHostTemplates"/>
|
1848
|
+
</AssociationSet>
|
1849
|
+
<AssociationSet Name="VMNetworkMostRecentTaskRelationship" Association="VMM.VMNetwork_MostRecentTask">
|
1850
|
+
<End Role="VMNetwork" EntitySet="VMNetworks"/>
|
1851
|
+
<End Role="MostRecentTask" EntitySet="Jobs"/>
|
1852
|
+
</AssociationSet>
|
1853
|
+
<AssociationSet Name="VMNetworkVMNetworkGatewayRelationship" Association="VMM.VMNetwork_VMNetworkGateways">
|
1854
|
+
<End Role="VMNetwork" EntitySet="VMNetworks"/>
|
1855
|
+
<End Role="VMNetworkGateways" EntitySet="VMNetworkGateways"/>
|
1856
|
+
</AssociationSet>
|
1857
|
+
<AssociationSet Name="HardwareProfileVirtualNetworkAdapterRelationship" Association="VMM.HardwareProfile_VirtualNetworkAdapters">
|
1858
|
+
<End Role="HardwareProfile" EntitySet="HardwareProfiles"/>
|
1859
|
+
<End Role="VirtualNetworkAdapters" EntitySet="VirtualNetworkAdapters"/>
|
1860
|
+
</AssociationSet>
|
1861
|
+
<AssociationSet Name="HardwareProfileSCSIAdaptersRelationship" Association="VMM.HardwareProfile_VirtualSCSIAdapters">
|
1862
|
+
<End Role="HardwareProfile" EntitySet="HardwareProfiles"/>
|
1863
|
+
<End Role="VirtualSCSIAdapters" EntitySet="VirtualSCSIAdapters"/>
|
1864
|
+
</AssociationSet>
|
1865
|
+
<AssociationSet Name="HardwareProfileVirtualDVDDrivesRelationship" Association="VMM.HardwareProfile_VirtualDVDDrives">
|
1866
|
+
<End Role="HardwareProfile" EntitySet="HardwareProfiles"/>
|
1867
|
+
<End Role="VirtualDVDDrives" EntitySet="VirtualDVDDrives"/>
|
1868
|
+
</AssociationSet>
|
1869
|
+
<AssociationSet Name="VMNetworkGatewayBGPPeerRelationship" Association="VMM.VMNetworkGateway_BGPPeers">
|
1870
|
+
<End Role="VMNetworkGateway" EntitySet="VMNetworkGateways"/>
|
1871
|
+
<End Role="BGPPeers" EntitySet="BGPPeers"/>
|
1872
|
+
</AssociationSet>
|
1873
|
+
<AssociationSet Name="VMNetworkGatewayNATConnectionRelationship" Association="VMM.VMNetworkGateway_NATConnections">
|
1874
|
+
<End Role="VMNetworkGateway" EntitySet="VMNetworkGateways"/>
|
1875
|
+
<End Role="NATConnections" EntitySet="NATConnections"/>
|
1876
|
+
</AssociationSet>
|
1877
|
+
<AssociationSet Name="VMNetworkGatewayVPNConnectionRelationship" Association="VMM.VMNetworkGateway_VPNConnections">
|
1878
|
+
<End Role="VMNetworkGateway" EntitySet="VMNetworkGateways"/>
|
1879
|
+
<End Role="VPNConnections" EntitySet="VPNConnections"/>
|
1880
|
+
</AssociationSet>
|
1881
|
+
<AssociationSet Name="VPNConnectionNetworkRouteRelationship" Association="VMM.VPNConnection_NetworkRoutes">
|
1882
|
+
<End Role="VPNConnection" EntitySet="VPNConnections"/>
|
1883
|
+
<End Role="NetworkRoutes" EntitySet="VPNNetworkRoutes"/>
|
1884
|
+
</AssociationSet>
|
1885
|
+
<AssociationSet Name="NATConnectionNATRuleRelationship" Association="VMM.NATConnection_Rules">
|
1886
|
+
<End Role="NATConnection" EntitySet="NATConnections"/>
|
1887
|
+
<End Role="Rules" EntitySet="NATRules"/>
|
1888
|
+
</AssociationSet>
|
1889
|
+
<AssociationSet Name="CloudServiceToResourceRelationship" Association="MicrosoftCompute.CloudService_Resources">
|
1890
|
+
<End Role="CloudService" EntitySet="CloudServices"/>
|
1891
|
+
<End Role="Resources" EntitySet="CloudResource"/>
|
1892
|
+
</AssociationSet>
|
1893
|
+
<AssociationSet Name="CloudResourceToVMRoleRelationship" Association="MicrosoftCompute.CloudResource_VMRoles">
|
1894
|
+
<End Role="CloudResource" EntitySet="CloudResource"/>
|
1895
|
+
<End Role="VMRoles" EntitySet="VMRole"/>
|
1896
|
+
</AssociationSet>
|
1897
|
+
<AssociationSet Name="VMRoleToVMRelationship" Association="MicrosoftCompute.VMRole_VMs">
|
1898
|
+
<End Role="VMRole" EntitySet="VMRole"/>
|
1899
|
+
<End Role="VMs" EntitySet="VM"/>
|
1900
|
+
</AssociationSet>
|
1901
|
+
<AssociationSet Name="VMRoleVMToDiskRelationship" Association="MicrosoftCompute.VM_Disks">
|
1902
|
+
<End Role="VM" EntitySet="VM"/>
|
1903
|
+
<End Role="Disks" EntitySet="VMRoleVMDisk"/>
|
1904
|
+
</AssociationSet>
|
1905
|
+
<AssociationSet Name="VMRoleVMToNicRelationship" Association="MicrosoftCompute.VM_Nics">
|
1906
|
+
<End Role="VM" EntitySet="VM"/>
|
1907
|
+
<End Role="Nics" EntitySet="VMRoleVMNic"/>
|
1908
|
+
</AssociationSet>
|
1909
|
+
</EntityContainer>
|
1910
|
+
<Annotations Target="VMM.VMM">
|
1911
|
+
<ValueAnnotation Term="Com.Microsoft.Data.Services.Conventions.V1.UrlConventions" String="KeyAsSegment"/>
|
1912
|
+
</Annotations>
|
1913
|
+
</Schema>
|
1914
|
+
<Schema xmlns="http://schemas.microsoft.com/ado/2009/11/edm" Namespace="MicrosoftCompute">
|
1915
|
+
<EntityType Name="VMRole">
|
1916
|
+
<Key>
|
1917
|
+
<PropertyRef Name="Name"/>
|
1918
|
+
</Key>
|
1919
|
+
<Property Name="Name" Type="Edm.String" Nullable="false"/>
|
1920
|
+
<Property Name="Label" Type="Edm.String"/>
|
1921
|
+
<Property Name="ResourceDefinition" Type="MicrosoftCompute.VMRoleResourceDefinition"/>
|
1922
|
+
<Property Name="ResourceConfiguration" Type="MicrosoftCompute.ResourceConfiguration"/>
|
1923
|
+
<Property Name="ProvisioningState" Type="Edm.String"/>
|
1924
|
+
<Property Name="Substate" Type="MicrosoftCompute.Substate"/>
|
1925
|
+
<Property Name="InstanceView" Type="MicrosoftCompute.InstanceView"/>
|
1926
|
+
<NavigationProperty Name="VMs" Relationship="MicrosoftCompute.VMRole_VMs" ToRole="VMs" FromRole="VMRole"/>
|
1927
|
+
</EntityType>
|
1928
|
+
<EntityType Name="VM">
|
1929
|
+
<Key>
|
1930
|
+
<PropertyRef Name="Id"/>
|
1931
|
+
</Key>
|
1932
|
+
<Property Name="Id" Type="Edm.Guid" Nullable="false"/>
|
1933
|
+
<Property Name="ComputerName" Type="Edm.String"/>
|
1934
|
+
<Property Name="RuntimeState" Type="Edm.String"/>
|
1935
|
+
<Property Name="ConnectToAddresses" Type="Collection(MicrosoftCompute.ConnectToAddress)" Nullable="false"/>
|
1936
|
+
<NavigationProperty Name="Disks" Relationship="MicrosoftCompute.VM_Disks" ToRole="Disks" FromRole="VM"/>
|
1937
|
+
<NavigationProperty Name="Nics" Relationship="MicrosoftCompute.VM_Nics" ToRole="Nics" FromRole="VM"/>
|
1938
|
+
</EntityType>
|
1939
|
+
<EntityType Name="CloudService">
|
1940
|
+
<Key>
|
1941
|
+
<PropertyRef Name="Name"/>
|
1942
|
+
</Key>
|
1943
|
+
<Property Name="Name" Type="Edm.String" Nullable="false"/>
|
1944
|
+
<Property Name="Label" Type="Edm.String"/>
|
1945
|
+
<Property Name="ProvisioningState" Type="Edm.String"/>
|
1946
|
+
<NavigationProperty Name="Resources" Relationship="MicrosoftCompute.CloudService_Resources" ToRole="Resources" FromRole="CloudService"/>
|
1947
|
+
</EntityType>
|
1948
|
+
<EntityType Name="CloudResource">
|
1949
|
+
<Key>
|
1950
|
+
<PropertyRef Name="ResourceProviderNamespace"/>
|
1951
|
+
</Key>
|
1952
|
+
<Property Name="ResourceProviderNamespace" Type="Edm.String" Nullable="false"/>
|
1953
|
+
<NavigationProperty Name="VMRoles" Relationship="MicrosoftCompute.CloudResource_VMRoles" ToRole="VMRoles" FromRole="CloudResource"/>
|
1954
|
+
</EntityType>
|
1955
|
+
<ComplexType Name="VMRoleResourceDefinition">
|
1956
|
+
<Property Name="Name" Type="Edm.String"/>
|
1957
|
+
<Property Name="Version" Type="Edm.String"/>
|
1958
|
+
<Property Name="Publisher" Type="Edm.String"/>
|
1959
|
+
<Property Name="SchemaVersion" Type="Edm.String"/>
|
1960
|
+
<Property Name="Type" Type="Edm.String"/>
|
1961
|
+
<Property Name="ResourceParameters" Type="Collection(MicrosoftCompute.ResourceParameter)" Nullable="false"/>
|
1962
|
+
<Property Name="ResourceExtensionReferences" Type="Collection(MicrosoftCompute.ResourceExtensionReference)" Nullable="false"/>
|
1963
|
+
<Property Name="IntrinsicSettings" Type="MicrosoftCompute.IntrinsicSettings"/>
|
1964
|
+
</ComplexType>
|
1965
|
+
<ComplexType Name="ResourceParameter">
|
1966
|
+
<Property Name="Name" Type="Edm.String"/>
|
1967
|
+
<Property Name="Type" Type="Edm.String"/>
|
1968
|
+
<Property Name="Description" Type="Edm.String"/>
|
1969
|
+
</ComplexType>
|
1970
|
+
<ComplexType Name="ResourceExtensionReference">
|
1971
|
+
<Property Name="ReferenceName" Type="Edm.String"/>
|
1972
|
+
<Property Name="Name" Type="Edm.String"/>
|
1973
|
+
<Property Name="Version" Type="Edm.String"/>
|
1974
|
+
<Property Name="Publisher" Type="Edm.String"/>
|
1975
|
+
<Property Name="ResourceExtensionParameterValues" Type="Edm.String"/>
|
1976
|
+
</ComplexType>
|
1977
|
+
<ComplexType Name="IntrinsicSettings">
|
1978
|
+
<Property Name="ScaleOutSettings" Type="MicrosoftCompute.ScaleOutSetting"/>
|
1979
|
+
<Property Name="HardwareProfile" Type="MicrosoftCompute.ResDefHardwareProfile"/>
|
1980
|
+
<Property Name="StorageProfile" Type="MicrosoftCompute.StorageProfile"/>
|
1981
|
+
<Property Name="OperatingSystemProfile" Type="MicrosoftCompute.OSProfile"/>
|
1982
|
+
<Property Name="NetworkProfile" Type="MicrosoftCompute.NetworkProfile"/>
|
1983
|
+
</ComplexType>
|
1984
|
+
<ComplexType Name="ScaleOutSetting">
|
1985
|
+
<Property Name="InitialInstanceCount" Type="Edm.String"/>
|
1986
|
+
<Property Name="MaximumInstanceCount" Type="Edm.String"/>
|
1987
|
+
<Property Name="MinimumInstanceCount" Type="Edm.String"/>
|
1988
|
+
<Property Name="UpgradeDomainCount" Type="Edm.String"/>
|
1989
|
+
</ComplexType>
|
1990
|
+
<ComplexType Name="ResDefHardwareProfile">
|
1991
|
+
<Property Name="VMSize" Type="Edm.String"/>
|
1992
|
+
</ComplexType>
|
1993
|
+
<ComplexType Name="StorageProfile">
|
1994
|
+
<Property Name="OSVirtualHardDiskImage" Type="Edm.String"/>
|
1995
|
+
<Property Name="DataVirtualHardDisks" Type="Collection(MicrosoftCompute.DataVirtualHardDisk)" Nullable="false"/>
|
1996
|
+
</ComplexType>
|
1997
|
+
<ComplexType Name="DataVirtualHardDisk">
|
1998
|
+
<Property Name="DataVirtualHardDiskImage" Type="Edm.String"/>
|
1999
|
+
<Property Name="Lun" Type="Edm.String"/>
|
2000
|
+
</ComplexType>
|
2001
|
+
<ComplexType Name="OSProfile">
|
2002
|
+
<Property Name="ComputerNamePattern" Type="Edm.String"/>
|
2003
|
+
<Property Name="TimeZone" Type="Edm.String"/>
|
2004
|
+
<Property Name="AdminCredential" Type="Edm.String"/>
|
2005
|
+
<Property Name="WindowsOperatingSystemProfile" Type="MicrosoftCompute.WindowsOperatingSystemProfile"/>
|
2006
|
+
<Property Name="LinuxOperatingSystemProfile" Type="MicrosoftCompute.LinuxOperatingSystemProfile"/>
|
2007
|
+
</ComplexType>
|
2008
|
+
<ComplexType Name="WindowsOperatingSystemProfile">
|
2009
|
+
<Property Name="WorkgroupName" Type="Edm.String"/>
|
2010
|
+
<Property Name="DomainJoin" Type="MicrosoftCompute.DomainJoin"/>
|
2011
|
+
</ComplexType>
|
2012
|
+
<ComplexType Name="DomainJoin">
|
2013
|
+
<Property Name="DomainToJoin" Type="Edm.String"/>
|
2014
|
+
<Property Name="DomainJoinCredentials" Type="Edm.String"/>
|
2015
|
+
</ComplexType>
|
2016
|
+
<ComplexType Name="LinuxOperatingSystemProfile">
|
2017
|
+
<Property Name="DNSDomainName" Type="Edm.String"/>
|
2018
|
+
<Property Name="SSHPublicKey" Type="Edm.String"/>
|
2019
|
+
</ComplexType>
|
2020
|
+
<ComplexType Name="NetworkProfile">
|
2021
|
+
<Property Name="NetworkAdapters" Type="Collection(MicrosoftCompute.NetworkAdapter)" Nullable="false"/>
|
2022
|
+
</ComplexType>
|
2023
|
+
<ComplexType Name="NetworkAdapter">
|
2024
|
+
<Property Name="Name" Type="Edm.String"/>
|
2025
|
+
<Property Name="NetworkRef" Type="Edm.String"/>
|
2026
|
+
<Property Name="IPAddresses" Type="Collection(MicrosoftCompute.IPAddress)" Nullable="false"/>
|
2027
|
+
</ComplexType>
|
2028
|
+
<ComplexType Name="IPAddress">
|
2029
|
+
<Property Name="AllocationMethod" Type="Edm.String"/>
|
2030
|
+
<Property Name="Type" Type="Edm.String"/>
|
2031
|
+
<Property Name="ConfigurationName" Type="Edm.String"/>
|
2032
|
+
<Property Name="LoadBalancerConfigurations" Type="Collection(MicrosoftCompute.LoadBalancerConfiguration)" Nullable="false"/>
|
2033
|
+
</ComplexType>
|
2034
|
+
<ComplexType Name="LoadBalancerConfiguration">
|
2035
|
+
<Property Name="ConfigurationName" Type="Edm.String"/>
|
2036
|
+
<Property Name="FrontEndNetwork" Type="Edm.String"/>
|
2037
|
+
<Property Name="PortConfig" Type="MicrosoftCompute.PortConfiguration"/>
|
2038
|
+
<Property Name="Probe" Type="MicrosoftCompute.Probe"/>
|
2039
|
+
</ComplexType>
|
2040
|
+
<ComplexType Name="PortConfiguration">
|
2041
|
+
<Property Name="Name" Type="Edm.String"/>
|
2042
|
+
<Property Name="Protocol" Type="Edm.String"/>
|
2043
|
+
<Property Name="FrontEndPort" Type="Edm.String"/>
|
2044
|
+
<Property Name="BackEndPort" Type="Edm.String"/>
|
2045
|
+
</ComplexType>
|
2046
|
+
<ComplexType Name="Probe">
|
2047
|
+
<Property Name="ProbeIntervalInSeconds" Type="Edm.String"/>
|
2048
|
+
<Property Name="Protocol" Type="Edm.String"/>
|
2049
|
+
<Property Name="Port" Type="Edm.String"/>
|
2050
|
+
<Property Name="MaxRetryCount" Type="Edm.String"/>
|
2051
|
+
<Property Name="RequestPath" Type="Edm.String"/>
|
2052
|
+
</ComplexType>
|
2053
|
+
<ComplexType Name="ResourceConfiguration">
|
2054
|
+
<Property Name="Version" Type="Edm.String"/>
|
2055
|
+
<Property Name="ParameterValues" Type="Edm.String"/>
|
2056
|
+
</ComplexType>
|
2057
|
+
<ComplexType Name="Substate">
|
2058
|
+
<Property Name="VMRoleMessages" Type="Collection(MicrosoftCompute.VMRoleMessage)" Nullable="false"/>
|
2059
|
+
</ComplexType>
|
2060
|
+
<ComplexType Name="VMRoleMessage">
|
2061
|
+
<Property Name="VMId" Type="Edm.Guid"/>
|
2062
|
+
<Property Name="MessageQualifier" Type="Edm.String"/>
|
2063
|
+
<Property Name="Message" Type="Edm.String"/>
|
2064
|
+
</ComplexType>
|
2065
|
+
<ComplexType Name="InstanceView">
|
2066
|
+
<Property Name="VIPs" Type="Collection(MicrosoftCompute.VMRoleVIP)" Nullable="false"/>
|
2067
|
+
<Property Name="InstanceCount" Type="Edm.Int64"/>
|
2068
|
+
<Property Name="ResolvedResourceDefinition" Type="MicrosoftCompute.VMRoleResourceDefinition"/>
|
2069
|
+
</ComplexType>
|
2070
|
+
<ComplexType Name="VMRoleVIP">
|
2071
|
+
<Property Name="NetworkAdapterName" Type="Edm.String"/>
|
2072
|
+
<Property Name="LoadbalancerConfigurationName" Type="Edm.String"/>
|
2073
|
+
<Property Name="VIP" Type="Edm.String"/>
|
2074
|
+
</ComplexType>
|
2075
|
+
<ComplexType Name="ConnectToAddress">
|
2076
|
+
<Property Name="IPAddress" Type="Edm.String"/>
|
2077
|
+
<Property Name="NetworkName" Type="Edm.String"/>
|
2078
|
+
<Property Name="Port" Type="Edm.Int32"/>
|
2079
|
+
</ComplexType>
|
2080
|
+
<EntityType Name="VMRoleVMDisk">
|
2081
|
+
<Key>
|
2082
|
+
<PropertyRef Name="Id"/>
|
2083
|
+
</Key>
|
2084
|
+
<Property Name="Id" Type="Edm.Guid" Nullable="false"/>
|
2085
|
+
<Property Name="DataVirtualHardDiskImage" Type="Edm.String"/>
|
2086
|
+
<Property Name="DiskLun" Type="Edm.Int32"/>
|
2087
|
+
<Property Name="DiskDataFile" Type="Edm.String"/>
|
2088
|
+
<Property Name="DiskSize" Type="Edm.Int64"/>
|
2089
|
+
</EntityType>
|
2090
|
+
<EntityType Name="VMRoleVMNic">
|
2091
|
+
<Key>
|
2092
|
+
<PropertyRef Name="Id"/>
|
2093
|
+
</Key>
|
2094
|
+
<Property Name="Id" Type="Edm.Guid" Nullable="false"/>
|
2095
|
+
<Property Name="NetworkAdapterName" Type="Edm.String"/>
|
2096
|
+
<Property Name="CurrentIpAddresses" Type="Collection(Edm.String)" Nullable="false"/>
|
2097
|
+
</EntityType>
|
2098
|
+
<Association Name="VMRole_VMs">
|
2099
|
+
<End Type="MicrosoftCompute.VMRole" Role="VMRole" Multiplicity="*"/>
|
2100
|
+
<End Type="MicrosoftCompute.VM" Role="VMs" Multiplicity="*"/>
|
2101
|
+
</Association>
|
2102
|
+
<Association Name="VM_Disks">
|
2103
|
+
<End Type="MicrosoftCompute.VMRoleVMDisk" Role="Disks" Multiplicity="*"/>
|
2104
|
+
<End Type="MicrosoftCompute.VM" Role="VM" Multiplicity="*"/>
|
2105
|
+
</Association>
|
2106
|
+
<Association Name="VM_Nics">
|
2107
|
+
<End Type="MicrosoftCompute.VMRoleVMNic" Role="Nics" Multiplicity="*"/>
|
2108
|
+
<End Type="MicrosoftCompute.VM" Role="VM" Multiplicity="*"/>
|
2109
|
+
</Association>
|
2110
|
+
<Association Name="CloudService_Resources">
|
2111
|
+
<End Type="MicrosoftCompute.CloudService" Role="CloudService" Multiplicity="*"/>
|
2112
|
+
<End Type="MicrosoftCompute.CloudResource" Role="Resources" Multiplicity="*"/>
|
2113
|
+
</Association>
|
2114
|
+
<Association Name="CloudResource_VMRoles">
|
2115
|
+
<End Type="MicrosoftCompute.VMRole" Role="VMRoles" Multiplicity="*"/>
|
2116
|
+
<End Type="MicrosoftCompute.CloudResource" Role="CloudResource" Multiplicity="*"/>
|
2117
|
+
</Association>
|
2118
|
+
</Schema>
|
2119
|
+
</edmx:DataServices>
|
2120
|
+
</edmx:Edmx>
|