@lansweeper/discovery-sensor-proto 2.72.0 → 2.73.1
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.
- package/gen-proto/discovery_sections_api_pb.d.ts +111 -1237
- package/gen-proto/discovery_sections_api_pb.js +1438 -10924
- package/gen-proto/image.json +1 -1
- package/package.json +2 -2
- package/proto/discovery_sections_api.proto +19 -247
|
@@ -3455,6 +3455,10 @@ export class Office365Organization extends jspb.Message {
|
|
|
3455
3455
|
getContactsList(): Array<Office365Contact>;
|
|
3456
3456
|
setContactsList(value: Array<Office365Contact>): Office365Organization;
|
|
3457
3457
|
addContacts(value?: Office365Contact, index?: number): Office365Contact;
|
|
3458
|
+
clearMailboxesList(): void;
|
|
3459
|
+
getMailboxesList(): Array<Office365Mailbox>;
|
|
3460
|
+
setMailboxesList(value: Array<Office365Mailbox>): Office365Organization;
|
|
3461
|
+
addMailboxes(value?: Office365Mailbox, index?: number): Office365Mailbox;
|
|
3458
3462
|
|
|
3459
3463
|
serializeBinary(): Uint8Array;
|
|
3460
3464
|
toObject(includeInstance?: boolean): Office365Organization.AsObject;
|
|
@@ -3485,6 +3489,96 @@ export namespace Office365Organization {
|
|
|
3485
3489
|
licensesList: Array<Office365License.AsObject>,
|
|
3486
3490
|
assignedPlansList: Array<Office365AssignedPlan.AsObject>,
|
|
3487
3491
|
contactsList: Array<Office365Contact.AsObject>,
|
|
3492
|
+
mailboxesList: Array<Office365Mailbox.AsObject>,
|
|
3493
|
+
}
|
|
3494
|
+
}
|
|
3495
|
+
|
|
3496
|
+
export class Office365Mailbox extends jspb.Message {
|
|
3497
|
+
|
|
3498
|
+
hasO365MailboxId(): boolean;
|
|
3499
|
+
clearO365MailboxId(): void;
|
|
3500
|
+
getO365MailboxId(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3501
|
+
setO365MailboxId(value?: google_protobuf_wrappers_pb.StringValue): Office365Mailbox;
|
|
3502
|
+
|
|
3503
|
+
hasO365OrganizationId(): boolean;
|
|
3504
|
+
clearO365OrganizationId(): void;
|
|
3505
|
+
getO365OrganizationId(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3506
|
+
setO365OrganizationId(value?: google_protobuf_wrappers_pb.StringValue): Office365Mailbox;
|
|
3507
|
+
|
|
3508
|
+
hasDisplayName(): boolean;
|
|
3509
|
+
clearDisplayName(): void;
|
|
3510
|
+
getDisplayName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3511
|
+
setDisplayName(value?: google_protobuf_wrappers_pb.StringValue): Office365Mailbox;
|
|
3512
|
+
|
|
3513
|
+
hasPrimaryEmail(): boolean;
|
|
3514
|
+
clearPrimaryEmail(): void;
|
|
3515
|
+
getPrimaryEmail(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3516
|
+
setPrimaryEmail(value?: google_protobuf_wrappers_pb.StringValue): Office365Mailbox;
|
|
3517
|
+
|
|
3518
|
+
hasEmailAddress(): boolean;
|
|
3519
|
+
clearEmailAddress(): void;
|
|
3520
|
+
getEmailAddress(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3521
|
+
setEmailAddress(value?: google_protobuf_wrappers_pb.StringValue): Office365Mailbox;
|
|
3522
|
+
|
|
3523
|
+
hasAlias(): boolean;
|
|
3524
|
+
clearAlias(): void;
|
|
3525
|
+
getAlias(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3526
|
+
setAlias(value?: google_protobuf_wrappers_pb.StringValue): Office365Mailbox;
|
|
3527
|
+
|
|
3528
|
+
hasRecipientType(): boolean;
|
|
3529
|
+
clearRecipientType(): void;
|
|
3530
|
+
getRecipientType(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3531
|
+
setRecipientType(value?: google_protobuf_wrappers_pb.StringValue): Office365Mailbox;
|
|
3532
|
+
|
|
3533
|
+
hasRecipientTypeDetails(): boolean;
|
|
3534
|
+
clearRecipientTypeDetails(): void;
|
|
3535
|
+
getRecipientTypeDetails(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3536
|
+
setRecipientTypeDetails(value?: google_protobuf_wrappers_pb.StringValue): Office365Mailbox;
|
|
3537
|
+
|
|
3538
|
+
hasUserPrincipalName(): boolean;
|
|
3539
|
+
clearUserPrincipalName(): void;
|
|
3540
|
+
getUserPrincipalName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3541
|
+
setUserPrincipalName(value?: google_protobuf_wrappers_pb.StringValue): Office365Mailbox;
|
|
3542
|
+
|
|
3543
|
+
hasIdentity(): boolean;
|
|
3544
|
+
clearIdentity(): void;
|
|
3545
|
+
getIdentity(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3546
|
+
setIdentity(value?: google_protobuf_wrappers_pb.StringValue): Office365Mailbox;
|
|
3547
|
+
|
|
3548
|
+
hasO365MailboxKey(): boolean;
|
|
3549
|
+
clearO365MailboxKey(): void;
|
|
3550
|
+
getO365MailboxKey(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3551
|
+
setO365MailboxKey(value?: google_protobuf_wrappers_pb.StringValue): Office365Mailbox;
|
|
3552
|
+
|
|
3553
|
+
hasO365OrganizationKey(): boolean;
|
|
3554
|
+
clearO365OrganizationKey(): void;
|
|
3555
|
+
getO365OrganizationKey(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3556
|
+
setO365OrganizationKey(value?: google_protobuf_wrappers_pb.StringValue): Office365Mailbox;
|
|
3557
|
+
|
|
3558
|
+
serializeBinary(): Uint8Array;
|
|
3559
|
+
toObject(includeInstance?: boolean): Office365Mailbox.AsObject;
|
|
3560
|
+
static toObject(includeInstance: boolean, msg: Office365Mailbox): Office365Mailbox.AsObject;
|
|
3561
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3562
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3563
|
+
static serializeBinaryToWriter(message: Office365Mailbox, writer: jspb.BinaryWriter): void;
|
|
3564
|
+
static deserializeBinary(bytes: Uint8Array): Office365Mailbox;
|
|
3565
|
+
static deserializeBinaryFromReader(message: Office365Mailbox, reader: jspb.BinaryReader): Office365Mailbox;
|
|
3566
|
+
}
|
|
3567
|
+
|
|
3568
|
+
export namespace Office365Mailbox {
|
|
3569
|
+
export type AsObject = {
|
|
3570
|
+
o365MailboxId?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3571
|
+
o365OrganizationId?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3572
|
+
displayName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3573
|
+
primaryEmail?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3574
|
+
emailAddress?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3575
|
+
alias?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3576
|
+
recipientType?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3577
|
+
recipientTypeDetails?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3578
|
+
userPrincipalName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3579
|
+
identity?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3580
|
+
o365MailboxKey?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3581
|
+
o365OrganizationKey?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3488
3582
|
}
|
|
3489
3583
|
}
|
|
3490
3584
|
|
|
@@ -3675,6 +3769,11 @@ export class Office365Group extends jspb.Message {
|
|
|
3675
3769
|
setUsersList(value: Array<Office365User>): Office365Group;
|
|
3676
3770
|
addUsers(value?: Office365User, index?: number): Office365User;
|
|
3677
3771
|
|
|
3772
|
+
hasType(): boolean;
|
|
3773
|
+
clearType(): void;
|
|
3774
|
+
getType(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3775
|
+
setType(value?: google_protobuf_wrappers_pb.StringValue): Office365Group;
|
|
3776
|
+
|
|
3678
3777
|
serializeBinary(): Uint8Array;
|
|
3679
3778
|
toObject(includeInstance?: boolean): Office365Group.AsObject;
|
|
3680
3779
|
static toObject(includeInstance: boolean, msg: Office365Group): Office365Group.AsObject;
|
|
@@ -3696,6 +3795,7 @@ export namespace Office365Group {
|
|
|
3696
3795
|
mailNickname?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3697
3796
|
proxyAddresses?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3698
3797
|
usersList: Array<Office365User.AsObject>,
|
|
3798
|
+
type?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3699
3799
|
}
|
|
3700
3800
|
}
|
|
3701
3801
|
|
|
@@ -3734,6 +3834,11 @@ export class Office365License extends jspb.Message {
|
|
|
3734
3834
|
setServicePlansList(value: Array<Office365ServicePlan>): Office365License;
|
|
3735
3835
|
addServicePlans(value?: Office365ServicePlan, index?: number): Office365ServicePlan;
|
|
3736
3836
|
|
|
3837
|
+
hasName(): boolean;
|
|
3838
|
+
clearName(): void;
|
|
3839
|
+
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3840
|
+
setName(value?: google_protobuf_wrappers_pb.StringValue): Office365License;
|
|
3841
|
+
|
|
3737
3842
|
serializeBinary(): Uint8Array;
|
|
3738
3843
|
toObject(includeInstance?: boolean): Office365License.AsObject;
|
|
3739
3844
|
static toObject(includeInstance: boolean, msg: Office365License): Office365License.AsObject;
|
|
@@ -3756,6 +3861,7 @@ export namespace Office365License {
|
|
|
3756
3861
|
capabilityStatus?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3757
3862
|
usersList: Array<Office365User.AsObject>,
|
|
3758
3863
|
servicePlansList: Array<Office365ServicePlan.AsObject>,
|
|
3864
|
+
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
3759
3865
|
}
|
|
3760
3866
|
}
|
|
3761
3867
|
|
|
@@ -3995,6 +4101,11 @@ export class Office365User extends jspb.Message {
|
|
|
3995
4101
|
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
3996
4102
|
setName(value?: google_protobuf_wrappers_pb.StringValue): Office365User;
|
|
3997
4103
|
|
|
4104
|
+
hasType(): boolean;
|
|
4105
|
+
clearType(): void;
|
|
4106
|
+
getType(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4107
|
+
setType(value?: google_protobuf_wrappers_pb.StringValue): Office365User;
|
|
4108
|
+
|
|
3998
4109
|
serializeBinary(): Uint8Array;
|
|
3999
4110
|
toObject(includeInstance?: boolean): Office365User.AsObject;
|
|
4000
4111
|
static toObject(includeInstance: boolean, msg: Office365User): Office365User.AsObject;
|
|
@@ -4047,1237 +4158,7 @@ export namespace Office365User {
|
|
|
4047
4158
|
resetPasswordOnNextLogon?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
4048
4159
|
assignedPlansList: Array<Office365AssignedPlan.AsObject>,
|
|
4049
4160
|
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4050
|
-
}
|
|
4051
|
-
}
|
|
4052
|
-
|
|
4053
|
-
export class Esxi extends jspb.Message {
|
|
4054
|
-
|
|
4055
|
-
hasHostname(): boolean;
|
|
4056
|
-
clearHostname(): void;
|
|
4057
|
-
getHostname(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4058
|
-
setHostname(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4059
|
-
|
|
4060
|
-
hasVersion(): boolean;
|
|
4061
|
-
clearVersion(): void;
|
|
4062
|
-
getVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4063
|
-
setVersion(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4064
|
-
|
|
4065
|
-
hasDatacenterId(): boolean;
|
|
4066
|
-
clearDatacenterId(): void;
|
|
4067
|
-
getDatacenterId(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4068
|
-
setDatacenterId(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4069
|
-
getInternalKey(): string;
|
|
4070
|
-
setInternalKey(value: string): Esxi;
|
|
4071
|
-
|
|
4072
|
-
hasParentFolder(): boolean;
|
|
4073
|
-
clearParentFolder(): void;
|
|
4074
|
-
getParentFolder(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4075
|
-
setParentFolder(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4076
|
-
|
|
4077
|
-
hasProductInfo(): boolean;
|
|
4078
|
-
clearProductInfo(): void;
|
|
4079
|
-
getProductInfo(): VmwareProductInfo | undefined;
|
|
4080
|
-
setProductInfo(value?: VmwareProductInfo): Esxi;
|
|
4081
|
-
|
|
4082
|
-
hasAdminDisabled(): boolean;
|
|
4083
|
-
clearAdminDisabled(): void;
|
|
4084
|
-
getAdminDisabled(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
4085
|
-
setAdminDisabled(value?: google_protobuf_wrappers_pb.BoolValue): Esxi;
|
|
4086
|
-
clearVirtualMachinesList(): void;
|
|
4087
|
-
getVirtualMachinesList(): Array<VirtualMachine>;
|
|
4088
|
-
setVirtualMachinesList(value: Array<VirtualMachine>): Esxi;
|
|
4089
|
-
addVirtualMachines(value?: VirtualMachine, index?: number): VirtualMachine;
|
|
4090
|
-
clearNetworkDevicesList(): void;
|
|
4091
|
-
getNetworkDevicesList(): Array<VmwareNetwork>;
|
|
4092
|
-
setNetworkDevicesList(value: Array<VmwareNetwork>): Esxi;
|
|
4093
|
-
addNetworkDevices(value?: VmwareNetwork, index?: number): VmwareNetwork;
|
|
4094
|
-
clearDatastoresList(): void;
|
|
4095
|
-
getDatastoresList(): Array<Datastore>;
|
|
4096
|
-
setDatastoresList(value: Array<Datastore>): Esxi;
|
|
4097
|
-
addDatastores(value?: Datastore, index?: number): Datastore;
|
|
4098
|
-
|
|
4099
|
-
hasDnsAddresses(): boolean;
|
|
4100
|
-
clearDnsAddresses(): void;
|
|
4101
|
-
getDnsAddresses(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4102
|
-
setDnsAddresses(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4103
|
-
|
|
4104
|
-
hasDefaultGateway(): boolean;
|
|
4105
|
-
clearDefaultGateway(): void;
|
|
4106
|
-
getDefaultGateway(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4107
|
-
setDefaultGateway(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4108
|
-
|
|
4109
|
-
hasDomainName(): boolean;
|
|
4110
|
-
clearDomainName(): void;
|
|
4111
|
-
getDomainName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4112
|
-
setDomainName(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4113
|
-
|
|
4114
|
-
hasDhcp(): boolean;
|
|
4115
|
-
clearDhcp(): void;
|
|
4116
|
-
getDhcp(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
4117
|
-
setDhcp(value?: google_protobuf_wrappers_pb.BoolValue): Esxi;
|
|
4118
|
-
|
|
4119
|
-
hasConnectionState(): boolean;
|
|
4120
|
-
clearConnectionState(): void;
|
|
4121
|
-
getConnectionState(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4122
|
-
setConnectionState(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4123
|
-
|
|
4124
|
-
hasPowerState(): boolean;
|
|
4125
|
-
clearPowerState(): void;
|
|
4126
|
-
getPowerState(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4127
|
-
setPowerState(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4128
|
-
|
|
4129
|
-
hasBootTime(): boolean;
|
|
4130
|
-
clearBootTime(): void;
|
|
4131
|
-
getBootTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4132
|
-
setBootTime(value?: google_protobuf_timestamp_pb.Timestamp): Esxi;
|
|
4133
|
-
|
|
4134
|
-
hasUpTime(): boolean;
|
|
4135
|
-
clearUpTime(): void;
|
|
4136
|
-
getUpTime(): google_protobuf_wrappers_pb.Int64Value | undefined;
|
|
4137
|
-
setUpTime(value?: google_protobuf_wrappers_pb.Int64Value): Esxi;
|
|
4138
|
-
|
|
4139
|
-
hasHostMaxVirtualDiskCapacity(): boolean;
|
|
4140
|
-
clearHostMaxVirtualDiskCapacity(): void;
|
|
4141
|
-
getHostMaxVirtualDiskCapacity(): google_protobuf_wrappers_pb.Int64Value | undefined;
|
|
4142
|
-
setHostMaxVirtualDiskCapacity(value?: google_protobuf_wrappers_pb.Int64Value): Esxi;
|
|
4143
|
-
|
|
4144
|
-
hasIpAddress(): boolean;
|
|
4145
|
-
clearIpAddress(): void;
|
|
4146
|
-
getIpAddress(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4147
|
-
setIpAddress(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4148
|
-
|
|
4149
|
-
hasPort(): boolean;
|
|
4150
|
-
clearPort(): void;
|
|
4151
|
-
getPort(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4152
|
-
setPort(value?: google_protobuf_wrappers_pb.Int32Value): Esxi;
|
|
4153
|
-
|
|
4154
|
-
hasSslThumbprint(): boolean;
|
|
4155
|
-
clearSslThumbprint(): void;
|
|
4156
|
-
getSslThumbprint(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4157
|
-
setSslThumbprint(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4158
|
-
|
|
4159
|
-
hasManagementServerIp(): boolean;
|
|
4160
|
-
clearManagementServerIp(): void;
|
|
4161
|
-
getManagementServerIp(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4162
|
-
setManagementServerIp(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4163
|
-
|
|
4164
|
-
hasVendor(): boolean;
|
|
4165
|
-
clearVendor(): void;
|
|
4166
|
-
getVendor(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4167
|
-
setVendor(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4168
|
-
|
|
4169
|
-
hasModel(): boolean;
|
|
4170
|
-
clearModel(): void;
|
|
4171
|
-
getModel(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4172
|
-
setModel(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4173
|
-
|
|
4174
|
-
hasUuid(): boolean;
|
|
4175
|
-
clearUuid(): void;
|
|
4176
|
-
getUuid(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4177
|
-
setUuid(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4178
|
-
|
|
4179
|
-
hasMemorySize(): boolean;
|
|
4180
|
-
clearMemorySize(): void;
|
|
4181
|
-
getMemorySize(): google_protobuf_wrappers_pb.Int64Value | undefined;
|
|
4182
|
-
setMemorySize(value?: google_protobuf_wrappers_pb.Int64Value): Esxi;
|
|
4183
|
-
|
|
4184
|
-
hasCpuModel(): boolean;
|
|
4185
|
-
clearCpuModel(): void;
|
|
4186
|
-
getCpuModel(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4187
|
-
setCpuModel(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4188
|
-
|
|
4189
|
-
hasCpuMhz(): boolean;
|
|
4190
|
-
clearCpuMhz(): void;
|
|
4191
|
-
getCpuMhz(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4192
|
-
setCpuMhz(value?: google_protobuf_wrappers_pb.Int32Value): Esxi;
|
|
4193
|
-
|
|
4194
|
-
hasNumCpuPackages(): boolean;
|
|
4195
|
-
clearNumCpuPackages(): void;
|
|
4196
|
-
getNumCpuPackages(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4197
|
-
setNumCpuPackages(value?: google_protobuf_wrappers_pb.Int32Value): Esxi;
|
|
4198
|
-
|
|
4199
|
-
hasCpuPackagesDescriptions(): boolean;
|
|
4200
|
-
clearCpuPackagesDescriptions(): void;
|
|
4201
|
-
getCpuPackagesDescriptions(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4202
|
-
setCpuPackagesDescriptions(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4203
|
-
|
|
4204
|
-
hasNumCpuCores(): boolean;
|
|
4205
|
-
clearNumCpuCores(): void;
|
|
4206
|
-
getNumCpuCores(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4207
|
-
setNumCpuCores(value?: google_protobuf_wrappers_pb.Int32Value): Esxi;
|
|
4208
|
-
|
|
4209
|
-
hasNumCpuThreads(): boolean;
|
|
4210
|
-
clearNumCpuThreads(): void;
|
|
4211
|
-
getNumCpuThreads(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4212
|
-
setNumCpuThreads(value?: google_protobuf_wrappers_pb.Int32Value): Esxi;
|
|
4213
|
-
|
|
4214
|
-
hasNumNics(): boolean;
|
|
4215
|
-
clearNumNics(): void;
|
|
4216
|
-
getNumNics(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4217
|
-
setNumNics(value?: google_protobuf_wrappers_pb.Int32Value): Esxi;
|
|
4218
|
-
|
|
4219
|
-
hasNumHbas(): boolean;
|
|
4220
|
-
clearNumHbas(): void;
|
|
4221
|
-
getNumHbas(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4222
|
-
setNumHbas(value?: google_protobuf_wrappers_pb.Int32Value): Esxi;
|
|
4223
|
-
|
|
4224
|
-
hasBiosVersion(): boolean;
|
|
4225
|
-
clearBiosVersion(): void;
|
|
4226
|
-
getBiosVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4227
|
-
setBiosVersion(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4228
|
-
|
|
4229
|
-
hasBiosDate(): boolean;
|
|
4230
|
-
clearBiosDate(): void;
|
|
4231
|
-
getBiosDate(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4232
|
-
setBiosDate(value?: google_protobuf_timestamp_pb.Timestamp): Esxi;
|
|
4233
|
-
|
|
4234
|
-
hasSerial(): boolean;
|
|
4235
|
-
clearSerial(): void;
|
|
4236
|
-
getSerial(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4237
|
-
setSerial(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4238
|
-
|
|
4239
|
-
hasHtActive(): boolean;
|
|
4240
|
-
clearHtActive(): void;
|
|
4241
|
-
getHtActive(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
4242
|
-
setHtActive(value?: google_protobuf_wrappers_pb.BoolValue): Esxi;
|
|
4243
|
-
|
|
4244
|
-
hasHtAvailable(): boolean;
|
|
4245
|
-
clearHtAvailable(): void;
|
|
4246
|
-
getHtAvailable(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
4247
|
-
setHtAvailable(value?: google_protobuf_wrappers_pb.BoolValue): Esxi;
|
|
4248
|
-
|
|
4249
|
-
hasNumCpu(): boolean;
|
|
4250
|
-
clearNumCpu(): void;
|
|
4251
|
-
getNumCpu(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4252
|
-
setNumCpu(value?: google_protobuf_wrappers_pb.Int32Value): Esxi;
|
|
4253
|
-
|
|
4254
|
-
hasNumCoresPerSocket(): boolean;
|
|
4255
|
-
clearNumCoresPerSocket(): void;
|
|
4256
|
-
getNumCoresPerSocket(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4257
|
-
setNumCoresPerSocket(value?: google_protobuf_wrappers_pb.Int32Value): Esxi;
|
|
4258
|
-
|
|
4259
|
-
hasMacAddress(): boolean;
|
|
4260
|
-
clearMacAddress(): void;
|
|
4261
|
-
getMacAddress(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4262
|
-
setMacAddress(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4263
|
-
|
|
4264
|
-
hasFullHostName(): boolean;
|
|
4265
|
-
clearFullHostName(): void;
|
|
4266
|
-
getFullHostName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4267
|
-
setFullHostName(value?: google_protobuf_wrappers_pb.StringValue): Esxi;
|
|
4268
|
-
|
|
4269
|
-
serializeBinary(): Uint8Array;
|
|
4270
|
-
toObject(includeInstance?: boolean): Esxi.AsObject;
|
|
4271
|
-
static toObject(includeInstance: boolean, msg: Esxi): Esxi.AsObject;
|
|
4272
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4273
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4274
|
-
static serializeBinaryToWriter(message: Esxi, writer: jspb.BinaryWriter): void;
|
|
4275
|
-
static deserializeBinary(bytes: Uint8Array): Esxi;
|
|
4276
|
-
static deserializeBinaryFromReader(message: Esxi, reader: jspb.BinaryReader): Esxi;
|
|
4277
|
-
}
|
|
4278
|
-
|
|
4279
|
-
export namespace Esxi {
|
|
4280
|
-
export type AsObject = {
|
|
4281
|
-
hostname?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4282
|
-
version?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4283
|
-
datacenterId?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4284
|
-
internalKey: string,
|
|
4285
|
-
parentFolder?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4286
|
-
productInfo?: VmwareProductInfo.AsObject,
|
|
4287
|
-
adminDisabled?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
4288
|
-
virtualMachinesList: Array<VirtualMachine.AsObject>,
|
|
4289
|
-
networkDevicesList: Array<VmwareNetwork.AsObject>,
|
|
4290
|
-
datastoresList: Array<Datastore.AsObject>,
|
|
4291
|
-
dnsAddresses?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4292
|
-
defaultGateway?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4293
|
-
domainName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4294
|
-
dhcp?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
4295
|
-
connectionState?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4296
|
-
powerState?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4297
|
-
bootTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4298
|
-
upTime?: google_protobuf_wrappers_pb.Int64Value.AsObject,
|
|
4299
|
-
hostMaxVirtualDiskCapacity?: google_protobuf_wrappers_pb.Int64Value.AsObject,
|
|
4300
|
-
ipAddress?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4301
|
-
port?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4302
|
-
sslThumbprint?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4303
|
-
managementServerIp?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4304
|
-
vendor?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4305
|
-
model?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4306
|
-
uuid?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4307
|
-
memorySize?: google_protobuf_wrappers_pb.Int64Value.AsObject,
|
|
4308
|
-
cpuModel?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4309
|
-
cpuMhz?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4310
|
-
numCpuPackages?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4311
|
-
cpuPackagesDescriptions?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4312
|
-
numCpuCores?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4313
|
-
numCpuThreads?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4314
|
-
numNics?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4315
|
-
numHbas?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4316
|
-
biosVersion?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4317
|
-
biosDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4318
|
-
serial?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4319
|
-
htActive?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
4320
|
-
htAvailable?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
4321
|
-
numCpu?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4322
|
-
numCoresPerSocket?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4323
|
-
macAddress?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4324
|
-
fullHostName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4325
|
-
}
|
|
4326
|
-
}
|
|
4327
|
-
|
|
4328
|
-
export class VCenter extends jspb.Message {
|
|
4329
|
-
|
|
4330
|
-
hasProductInfo(): boolean;
|
|
4331
|
-
clearProductInfo(): void;
|
|
4332
|
-
getProductInfo(): VmwareProductInfo | undefined;
|
|
4333
|
-
setProductInfo(value?: VmwareProductInfo): VCenter;
|
|
4334
|
-
clearDatacentersList(): void;
|
|
4335
|
-
getDatacentersList(): Array<DataCenter>;
|
|
4336
|
-
setDatacentersList(value: Array<DataCenter>): VCenter;
|
|
4337
|
-
addDatacenters(value?: DataCenter, index?: number): DataCenter;
|
|
4338
|
-
|
|
4339
|
-
serializeBinary(): Uint8Array;
|
|
4340
|
-
toObject(includeInstance?: boolean): VCenter.AsObject;
|
|
4341
|
-
static toObject(includeInstance: boolean, msg: VCenter): VCenter.AsObject;
|
|
4342
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4343
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4344
|
-
static serializeBinaryToWriter(message: VCenter, writer: jspb.BinaryWriter): void;
|
|
4345
|
-
static deserializeBinary(bytes: Uint8Array): VCenter;
|
|
4346
|
-
static deserializeBinaryFromReader(message: VCenter, reader: jspb.BinaryReader): VCenter;
|
|
4347
|
-
}
|
|
4348
|
-
|
|
4349
|
-
export namespace VCenter {
|
|
4350
|
-
export type AsObject = {
|
|
4351
|
-
productInfo?: VmwareProductInfo.AsObject,
|
|
4352
|
-
datacentersList: Array<DataCenter.AsObject>,
|
|
4353
|
-
}
|
|
4354
|
-
}
|
|
4355
|
-
|
|
4356
|
-
export class VmwareProductInfo extends jspb.Message {
|
|
4357
|
-
|
|
4358
|
-
hasName(): boolean;
|
|
4359
|
-
clearName(): void;
|
|
4360
|
-
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4361
|
-
setName(value?: google_protobuf_wrappers_pb.StringValue): VmwareProductInfo;
|
|
4362
|
-
|
|
4363
|
-
hasApiType(): boolean;
|
|
4364
|
-
clearApiType(): void;
|
|
4365
|
-
getApiType(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4366
|
-
setApiType(value?: google_protobuf_wrappers_pb.StringValue): VmwareProductInfo;
|
|
4367
|
-
|
|
4368
|
-
hasApiVersion(): boolean;
|
|
4369
|
-
clearApiVersion(): void;
|
|
4370
|
-
getApiVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4371
|
-
setApiVersion(value?: google_protobuf_wrappers_pb.StringValue): VmwareProductInfo;
|
|
4372
|
-
|
|
4373
|
-
hasBuild(): boolean;
|
|
4374
|
-
clearBuild(): void;
|
|
4375
|
-
getBuild(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4376
|
-
setBuild(value?: google_protobuf_wrappers_pb.StringValue): VmwareProductInfo;
|
|
4377
|
-
|
|
4378
|
-
hasFullName(): boolean;
|
|
4379
|
-
clearFullName(): void;
|
|
4380
|
-
getFullName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4381
|
-
setFullName(value?: google_protobuf_wrappers_pb.StringValue): VmwareProductInfo;
|
|
4382
|
-
|
|
4383
|
-
hasInstanceUuid(): boolean;
|
|
4384
|
-
clearInstanceUuid(): void;
|
|
4385
|
-
getInstanceUuid(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4386
|
-
setInstanceUuid(value?: google_protobuf_wrappers_pb.StringValue): VmwareProductInfo;
|
|
4387
|
-
|
|
4388
|
-
hasLicenseProductName(): boolean;
|
|
4389
|
-
clearLicenseProductName(): void;
|
|
4390
|
-
getLicenseProductName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4391
|
-
setLicenseProductName(value?: google_protobuf_wrappers_pb.StringValue): VmwareProductInfo;
|
|
4392
|
-
|
|
4393
|
-
hasLicenseProductVersion(): boolean;
|
|
4394
|
-
clearLicenseProductVersion(): void;
|
|
4395
|
-
getLicenseProductVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4396
|
-
setLicenseProductVersion(value?: google_protobuf_wrappers_pb.StringValue): VmwareProductInfo;
|
|
4397
|
-
|
|
4398
|
-
hasLocaleBuild(): boolean;
|
|
4399
|
-
clearLocaleBuild(): void;
|
|
4400
|
-
getLocaleBuild(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4401
|
-
setLocaleBuild(value?: google_protobuf_wrappers_pb.StringValue): VmwareProductInfo;
|
|
4402
|
-
|
|
4403
|
-
hasLocaleVersion(): boolean;
|
|
4404
|
-
clearLocaleVersion(): void;
|
|
4405
|
-
getLocaleVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4406
|
-
setLocaleVersion(value?: google_protobuf_wrappers_pb.StringValue): VmwareProductInfo;
|
|
4407
|
-
|
|
4408
|
-
hasOsType(): boolean;
|
|
4409
|
-
clearOsType(): void;
|
|
4410
|
-
getOsType(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4411
|
-
setOsType(value?: google_protobuf_wrappers_pb.StringValue): VmwareProductInfo;
|
|
4412
|
-
|
|
4413
|
-
hasProductLineId(): boolean;
|
|
4414
|
-
clearProductLineId(): void;
|
|
4415
|
-
getProductLineId(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4416
|
-
setProductLineId(value?: google_protobuf_wrappers_pb.StringValue): VmwareProductInfo;
|
|
4417
|
-
|
|
4418
|
-
hasVendor(): boolean;
|
|
4419
|
-
clearVendor(): void;
|
|
4420
|
-
getVendor(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4421
|
-
setVendor(value?: google_protobuf_wrappers_pb.StringValue): VmwareProductInfo;
|
|
4422
|
-
|
|
4423
|
-
hasVersion(): boolean;
|
|
4424
|
-
clearVersion(): void;
|
|
4425
|
-
getVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4426
|
-
setVersion(value?: google_protobuf_wrappers_pb.StringValue): VmwareProductInfo;
|
|
4427
|
-
|
|
4428
|
-
serializeBinary(): Uint8Array;
|
|
4429
|
-
toObject(includeInstance?: boolean): VmwareProductInfo.AsObject;
|
|
4430
|
-
static toObject(includeInstance: boolean, msg: VmwareProductInfo): VmwareProductInfo.AsObject;
|
|
4431
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4432
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4433
|
-
static serializeBinaryToWriter(message: VmwareProductInfo, writer: jspb.BinaryWriter): void;
|
|
4434
|
-
static deserializeBinary(bytes: Uint8Array): VmwareProductInfo;
|
|
4435
|
-
static deserializeBinaryFromReader(message: VmwareProductInfo, reader: jspb.BinaryReader): VmwareProductInfo;
|
|
4436
|
-
}
|
|
4437
|
-
|
|
4438
|
-
export namespace VmwareProductInfo {
|
|
4439
|
-
export type AsObject = {
|
|
4440
|
-
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4441
|
-
apiType?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4442
|
-
apiVersion?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4443
|
-
build?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4444
|
-
fullName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4445
|
-
instanceUuid?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4446
|
-
licenseProductName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4447
|
-
licenseProductVersion?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4448
|
-
localeBuild?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4449
|
-
localeVersion?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4450
|
-
osType?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4451
|
-
productLineId?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4452
|
-
vendor?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4453
|
-
version?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4454
|
-
}
|
|
4455
|
-
}
|
|
4456
|
-
|
|
4457
|
-
export class VmwareDisk extends jspb.Message {
|
|
4458
|
-
|
|
4459
|
-
hasName(): boolean;
|
|
4460
|
-
clearName(): void;
|
|
4461
|
-
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4462
|
-
setName(value?: google_protobuf_wrappers_pb.StringValue): VmwareDisk;
|
|
4463
|
-
|
|
4464
|
-
hasUrl(): boolean;
|
|
4465
|
-
clearUrl(): void;
|
|
4466
|
-
getUrl(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4467
|
-
setUrl(value?: google_protobuf_wrappers_pb.StringValue): VmwareDisk;
|
|
4468
|
-
getTotalSpace(): number;
|
|
4469
|
-
setTotalSpace(value: number): VmwareDisk;
|
|
4470
|
-
getFreeSpace(): number;
|
|
4471
|
-
setFreeSpace(value: number): VmwareDisk;
|
|
4472
|
-
|
|
4473
|
-
serializeBinary(): Uint8Array;
|
|
4474
|
-
toObject(includeInstance?: boolean): VmwareDisk.AsObject;
|
|
4475
|
-
static toObject(includeInstance: boolean, msg: VmwareDisk): VmwareDisk.AsObject;
|
|
4476
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4477
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4478
|
-
static serializeBinaryToWriter(message: VmwareDisk, writer: jspb.BinaryWriter): void;
|
|
4479
|
-
static deserializeBinary(bytes: Uint8Array): VmwareDisk;
|
|
4480
|
-
static deserializeBinaryFromReader(message: VmwareDisk, reader: jspb.BinaryReader): VmwareDisk;
|
|
4481
|
-
}
|
|
4482
|
-
|
|
4483
|
-
export namespace VmwareDisk {
|
|
4484
|
-
export type AsObject = {
|
|
4485
|
-
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4486
|
-
url?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4487
|
-
totalSpace: number,
|
|
4488
|
-
freeSpace: number,
|
|
4489
|
-
}
|
|
4490
|
-
}
|
|
4491
|
-
|
|
4492
|
-
export class Datastore extends jspb.Message {
|
|
4493
|
-
|
|
4494
|
-
hasInternalKey(): boolean;
|
|
4495
|
-
clearInternalKey(): void;
|
|
4496
|
-
getInternalKey(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4497
|
-
setInternalKey(value?: google_protobuf_wrappers_pb.StringValue): Datastore;
|
|
4498
|
-
|
|
4499
|
-
hasDatacenterId(): boolean;
|
|
4500
|
-
clearDatacenterId(): void;
|
|
4501
|
-
getDatacenterId(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4502
|
-
setDatacenterId(value?: google_protobuf_wrappers_pb.Int32Value): Datastore;
|
|
4503
|
-
|
|
4504
|
-
hasDatastoreClusterId(): boolean;
|
|
4505
|
-
clearDatastoreClusterId(): void;
|
|
4506
|
-
getDatastoreClusterId(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4507
|
-
setDatastoreClusterId(value?: google_protobuf_wrappers_pb.Int32Value): Datastore;
|
|
4508
|
-
clearDisksList(): void;
|
|
4509
|
-
getDisksList(): Array<VmwareDisk>;
|
|
4510
|
-
setDisksList(value: Array<VmwareDisk>): Datastore;
|
|
4511
|
-
addDisks(value?: VmwareDisk, index?: number): VmwareDisk;
|
|
4512
|
-
|
|
4513
|
-
hasUncommitted(): boolean;
|
|
4514
|
-
clearUncommitted(): void;
|
|
4515
|
-
getUncommitted(): google_protobuf_wrappers_pb.Int64Value | undefined;
|
|
4516
|
-
setUncommitted(value?: google_protobuf_wrappers_pb.Int64Value): Datastore;
|
|
4517
|
-
|
|
4518
|
-
hasAccessible(): boolean;
|
|
4519
|
-
clearAccessible(): void;
|
|
4520
|
-
getAccessible(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
4521
|
-
setAccessible(value?: google_protobuf_wrappers_pb.BoolValue): Datastore;
|
|
4522
|
-
|
|
4523
|
-
hasMultipleHostAccess(): boolean;
|
|
4524
|
-
clearMultipleHostAccess(): void;
|
|
4525
|
-
getMultipleHostAccess(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
4526
|
-
setMultipleHostAccess(value?: google_protobuf_wrappers_pb.BoolValue): Datastore;
|
|
4527
|
-
|
|
4528
|
-
hasType(): boolean;
|
|
4529
|
-
clearType(): void;
|
|
4530
|
-
getType(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4531
|
-
setType(value?: google_protobuf_wrappers_pb.StringValue): Datastore;
|
|
4532
|
-
|
|
4533
|
-
hasMaintenanceMode(): boolean;
|
|
4534
|
-
clearMaintenanceMode(): void;
|
|
4535
|
-
getMaintenanceMode(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4536
|
-
setMaintenanceMode(value?: google_protobuf_wrappers_pb.StringValue): Datastore;
|
|
4537
|
-
|
|
4538
|
-
hasMaxPhysicalRdmFileSize(): boolean;
|
|
4539
|
-
clearMaxPhysicalRdmFileSize(): void;
|
|
4540
|
-
getMaxPhysicalRdmFileSize(): google_protobuf_wrappers_pb.Int64Value | undefined;
|
|
4541
|
-
setMaxPhysicalRdmFileSize(value?: google_protobuf_wrappers_pb.Int64Value): Datastore;
|
|
4542
|
-
|
|
4543
|
-
hasMaxVirtualRdmFileSize(): boolean;
|
|
4544
|
-
clearMaxVirtualRdmFileSize(): void;
|
|
4545
|
-
getMaxVirtualRdmFileSize(): google_protobuf_wrappers_pb.Int64Value | undefined;
|
|
4546
|
-
setMaxVirtualRdmFileSize(value?: google_protobuf_wrappers_pb.Int64Value): Datastore;
|
|
4547
|
-
|
|
4548
|
-
hasMaxFileSize(): boolean;
|
|
4549
|
-
clearMaxFileSize(): void;
|
|
4550
|
-
getMaxFileSize(): google_protobuf_wrappers_pb.Int64Value | undefined;
|
|
4551
|
-
setMaxFileSize(value?: google_protobuf_wrappers_pb.Int64Value): Datastore;
|
|
4552
|
-
|
|
4553
|
-
hasMaxVirtualDiskCapacity(): boolean;
|
|
4554
|
-
clearMaxVirtualDiskCapacity(): void;
|
|
4555
|
-
getMaxVirtualDiskCapacity(): google_protobuf_wrappers_pb.Int64Value | undefined;
|
|
4556
|
-
setMaxVirtualDiskCapacity(value?: google_protobuf_wrappers_pb.Int64Value): Datastore;
|
|
4557
|
-
|
|
4558
|
-
hasMaxMemoryFileSize(): boolean;
|
|
4559
|
-
clearMaxMemoryFileSize(): void;
|
|
4560
|
-
getMaxMemoryFileSize(): google_protobuf_wrappers_pb.Int64Value | undefined;
|
|
4561
|
-
setMaxMemoryFileSize(value?: google_protobuf_wrappers_pb.Int64Value): Datastore;
|
|
4562
|
-
|
|
4563
|
-
hasTimestamp(): boolean;
|
|
4564
|
-
clearTimestamp(): void;
|
|
4565
|
-
getTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4566
|
-
setTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): Datastore;
|
|
4567
|
-
|
|
4568
|
-
serializeBinary(): Uint8Array;
|
|
4569
|
-
toObject(includeInstance?: boolean): Datastore.AsObject;
|
|
4570
|
-
static toObject(includeInstance: boolean, msg: Datastore): Datastore.AsObject;
|
|
4571
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4572
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4573
|
-
static serializeBinaryToWriter(message: Datastore, writer: jspb.BinaryWriter): void;
|
|
4574
|
-
static deserializeBinary(bytes: Uint8Array): Datastore;
|
|
4575
|
-
static deserializeBinaryFromReader(message: Datastore, reader: jspb.BinaryReader): Datastore;
|
|
4576
|
-
}
|
|
4577
|
-
|
|
4578
|
-
export namespace Datastore {
|
|
4579
|
-
export type AsObject = {
|
|
4580
|
-
internalKey?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4581
|
-
datacenterId?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4582
|
-
datastoreClusterId?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4583
|
-
disksList: Array<VmwareDisk.AsObject>,
|
|
4584
|
-
uncommitted?: google_protobuf_wrappers_pb.Int64Value.AsObject,
|
|
4585
|
-
accessible?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
4586
|
-
multipleHostAccess?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
4587
4161
|
type?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4588
|
-
maintenanceMode?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4589
|
-
maxPhysicalRdmFileSize?: google_protobuf_wrappers_pb.Int64Value.AsObject,
|
|
4590
|
-
maxVirtualRdmFileSize?: google_protobuf_wrappers_pb.Int64Value.AsObject,
|
|
4591
|
-
maxFileSize?: google_protobuf_wrappers_pb.Int64Value.AsObject,
|
|
4592
|
-
maxVirtualDiskCapacity?: google_protobuf_wrappers_pb.Int64Value.AsObject,
|
|
4593
|
-
maxMemoryFileSize?: google_protobuf_wrappers_pb.Int64Value.AsObject,
|
|
4594
|
-
timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4595
|
-
}
|
|
4596
|
-
}
|
|
4597
|
-
|
|
4598
|
-
export class DatastoreClusterDrsPodConfigRule extends jspb.Message {
|
|
4599
|
-
|
|
4600
|
-
hasName(): boolean;
|
|
4601
|
-
clearName(): void;
|
|
4602
|
-
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4603
|
-
setName(value?: google_protobuf_wrappers_pb.StringValue): DatastoreClusterDrsPodConfigRule;
|
|
4604
|
-
|
|
4605
|
-
hasEnabled(): boolean;
|
|
4606
|
-
clearEnabled(): void;
|
|
4607
|
-
getEnabled(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
4608
|
-
setEnabled(value?: google_protobuf_wrappers_pb.BoolValue): DatastoreClusterDrsPodConfigRule;
|
|
4609
|
-
|
|
4610
|
-
hasType(): boolean;
|
|
4611
|
-
clearType(): void;
|
|
4612
|
-
getType(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4613
|
-
setType(value?: google_protobuf_wrappers_pb.Int32Value): DatastoreClusterDrsPodConfigRule;
|
|
4614
|
-
|
|
4615
|
-
serializeBinary(): Uint8Array;
|
|
4616
|
-
toObject(includeInstance?: boolean): DatastoreClusterDrsPodConfigRule.AsObject;
|
|
4617
|
-
static toObject(includeInstance: boolean, msg: DatastoreClusterDrsPodConfigRule): DatastoreClusterDrsPodConfigRule.AsObject;
|
|
4618
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4619
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4620
|
-
static serializeBinaryToWriter(message: DatastoreClusterDrsPodConfigRule, writer: jspb.BinaryWriter): void;
|
|
4621
|
-
static deserializeBinary(bytes: Uint8Array): DatastoreClusterDrsPodConfigRule;
|
|
4622
|
-
static deserializeBinaryFromReader(message: DatastoreClusterDrsPodConfigRule, reader: jspb.BinaryReader): DatastoreClusterDrsPodConfigRule;
|
|
4623
|
-
}
|
|
4624
|
-
|
|
4625
|
-
export namespace DatastoreClusterDrsPodConfigRule {
|
|
4626
|
-
export type AsObject = {
|
|
4627
|
-
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4628
|
-
enabled?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
4629
|
-
type?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4630
|
-
}
|
|
4631
|
-
}
|
|
4632
|
-
|
|
4633
|
-
export class DatastoreClusterDrsVmOverride extends jspb.Message {
|
|
4634
|
-
|
|
4635
|
-
hasEnabled(): boolean;
|
|
4636
|
-
clearEnabled(): void;
|
|
4637
|
-
getEnabled(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
4638
|
-
setEnabled(value?: google_protobuf_wrappers_pb.BoolValue): DatastoreClusterDrsVmOverride;
|
|
4639
|
-
|
|
4640
|
-
hasBehaviour(): boolean;
|
|
4641
|
-
clearBehaviour(): void;
|
|
4642
|
-
getBehaviour(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4643
|
-
setBehaviour(value?: google_protobuf_wrappers_pb.StringValue): DatastoreClusterDrsVmOverride;
|
|
4644
|
-
|
|
4645
|
-
hasIntraVmAffinity(): boolean;
|
|
4646
|
-
clearIntraVmAffinity(): void;
|
|
4647
|
-
getIntraVmAffinity(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
4648
|
-
setIntraVmAffinity(value?: google_protobuf_wrappers_pb.BoolValue): DatastoreClusterDrsVmOverride;
|
|
4649
|
-
|
|
4650
|
-
hasIntraVmAntiAffinity(): boolean;
|
|
4651
|
-
clearIntraVmAntiAffinity(): void;
|
|
4652
|
-
getIntraVmAntiAffinity(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4653
|
-
setIntraVmAntiAffinity(value?: google_protobuf_wrappers_pb.StringValue): DatastoreClusterDrsVmOverride;
|
|
4654
|
-
|
|
4655
|
-
serializeBinary(): Uint8Array;
|
|
4656
|
-
toObject(includeInstance?: boolean): DatastoreClusterDrsVmOverride.AsObject;
|
|
4657
|
-
static toObject(includeInstance: boolean, msg: DatastoreClusterDrsVmOverride): DatastoreClusterDrsVmOverride.AsObject;
|
|
4658
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4659
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4660
|
-
static serializeBinaryToWriter(message: DatastoreClusterDrsVmOverride, writer: jspb.BinaryWriter): void;
|
|
4661
|
-
static deserializeBinary(bytes: Uint8Array): DatastoreClusterDrsVmOverride;
|
|
4662
|
-
static deserializeBinaryFromReader(message: DatastoreClusterDrsVmOverride, reader: jspb.BinaryReader): DatastoreClusterDrsVmOverride;
|
|
4663
|
-
}
|
|
4664
|
-
|
|
4665
|
-
export namespace DatastoreClusterDrsVmOverride {
|
|
4666
|
-
export type AsObject = {
|
|
4667
|
-
enabled?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
4668
|
-
behaviour?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4669
|
-
intraVmAffinity?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
4670
|
-
intraVmAntiAffinity?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4671
|
-
}
|
|
4672
|
-
}
|
|
4673
|
-
|
|
4674
|
-
export class DatastoreCluster extends jspb.Message {
|
|
4675
|
-
getInternalKey(): string;
|
|
4676
|
-
setInternalKey(value: string): DatastoreCluster;
|
|
4677
|
-
|
|
4678
|
-
hasName(): boolean;
|
|
4679
|
-
clearName(): void;
|
|
4680
|
-
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4681
|
-
setName(value?: google_protobuf_wrappers_pb.StringValue): DatastoreCluster;
|
|
4682
|
-
getCapacity(): number;
|
|
4683
|
-
setCapacity(value: number): DatastoreCluster;
|
|
4684
|
-
getFreeSpace(): number;
|
|
4685
|
-
setFreeSpace(value: number): DatastoreCluster;
|
|
4686
|
-
|
|
4687
|
-
hasDatastoreClusterStorageDrs(): boolean;
|
|
4688
|
-
clearDatastoreClusterStorageDrs(): void;
|
|
4689
|
-
getDatastoreClusterStorageDrs(): DatastoreClusterStorageDrs | undefined;
|
|
4690
|
-
setDatastoreClusterStorageDrs(value?: DatastoreClusterStorageDrs): DatastoreCluster;
|
|
4691
|
-
clearDatastoresList(): void;
|
|
4692
|
-
getDatastoresList(): Array<Datastore>;
|
|
4693
|
-
setDatastoresList(value: Array<Datastore>): DatastoreCluster;
|
|
4694
|
-
addDatastores(value?: Datastore, index?: number): Datastore;
|
|
4695
|
-
clearDatastoreClusterDrsPodConfigRulesList(): void;
|
|
4696
|
-
getDatastoreClusterDrsPodConfigRulesList(): Array<DatastoreClusterDrsPodConfigRule>;
|
|
4697
|
-
setDatastoreClusterDrsPodConfigRulesList(value: Array<DatastoreClusterDrsPodConfigRule>): DatastoreCluster;
|
|
4698
|
-
addDatastoreClusterDrsPodConfigRules(value?: DatastoreClusterDrsPodConfigRule, index?: number): DatastoreClusterDrsPodConfigRule;
|
|
4699
|
-
clearDatastoreClusterDrsVmOverridesList(): void;
|
|
4700
|
-
getDatastoreClusterDrsVmOverridesList(): Array<DatastoreClusterDrsVmOverride>;
|
|
4701
|
-
setDatastoreClusterDrsVmOverridesList(value: Array<DatastoreClusterDrsVmOverride>): DatastoreCluster;
|
|
4702
|
-
addDatastoreClusterDrsVmOverrides(value?: DatastoreClusterDrsVmOverride, index?: number): DatastoreClusterDrsVmOverride;
|
|
4703
|
-
|
|
4704
|
-
serializeBinary(): Uint8Array;
|
|
4705
|
-
toObject(includeInstance?: boolean): DatastoreCluster.AsObject;
|
|
4706
|
-
static toObject(includeInstance: boolean, msg: DatastoreCluster): DatastoreCluster.AsObject;
|
|
4707
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4708
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4709
|
-
static serializeBinaryToWriter(message: DatastoreCluster, writer: jspb.BinaryWriter): void;
|
|
4710
|
-
static deserializeBinary(bytes: Uint8Array): DatastoreCluster;
|
|
4711
|
-
static deserializeBinaryFromReader(message: DatastoreCluster, reader: jspb.BinaryReader): DatastoreCluster;
|
|
4712
|
-
}
|
|
4713
|
-
|
|
4714
|
-
export namespace DatastoreCluster {
|
|
4715
|
-
export type AsObject = {
|
|
4716
|
-
internalKey: string,
|
|
4717
|
-
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4718
|
-
capacity: number,
|
|
4719
|
-
freeSpace: number,
|
|
4720
|
-
datastoreClusterStorageDrs?: DatastoreClusterStorageDrs.AsObject,
|
|
4721
|
-
datastoresList: Array<Datastore.AsObject>,
|
|
4722
|
-
datastoreClusterDrsPodConfigRulesList: Array<DatastoreClusterDrsPodConfigRule.AsObject>,
|
|
4723
|
-
datastoreClusterDrsVmOverridesList: Array<DatastoreClusterDrsVmOverride.AsObject>,
|
|
4724
|
-
}
|
|
4725
|
-
}
|
|
4726
|
-
|
|
4727
|
-
export class DatastoreClusterStorageDrs extends jspb.Message {
|
|
4728
|
-
getEnabled(): boolean;
|
|
4729
|
-
setEnabled(value: boolean): DatastoreClusterStorageDrs;
|
|
4730
|
-
getIoLoadBalanceEnabled(): boolean;
|
|
4731
|
-
setIoLoadBalanceEnabled(value: boolean): DatastoreClusterStorageDrs;
|
|
4732
|
-
|
|
4733
|
-
hasDefaultVmBehaviour(): boolean;
|
|
4734
|
-
clearDefaultVmBehaviour(): void;
|
|
4735
|
-
getDefaultVmBehaviour(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4736
|
-
setDefaultVmBehaviour(value?: google_protobuf_wrappers_pb.StringValue): DatastoreClusterStorageDrs;
|
|
4737
|
-
|
|
4738
|
-
hasLoadBalanceInterval(): boolean;
|
|
4739
|
-
clearLoadBalanceInterval(): void;
|
|
4740
|
-
getLoadBalanceInterval(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4741
|
-
setLoadBalanceInterval(value?: google_protobuf_wrappers_pb.Int32Value): DatastoreClusterStorageDrs;
|
|
4742
|
-
|
|
4743
|
-
hasDefaultIntraVmAffinity(): boolean;
|
|
4744
|
-
clearDefaultIntraVmAffinity(): void;
|
|
4745
|
-
getDefaultIntraVmAffinity(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
4746
|
-
setDefaultIntraVmAffinity(value?: google_protobuf_wrappers_pb.BoolValue): DatastoreClusterStorageDrs;
|
|
4747
|
-
|
|
4748
|
-
hasSpaceUtilizationThreshold(): boolean;
|
|
4749
|
-
clearSpaceUtilizationThreshold(): void;
|
|
4750
|
-
getSpaceUtilizationThreshold(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4751
|
-
setSpaceUtilizationThreshold(value?: google_protobuf_wrappers_pb.Int32Value): DatastoreClusterStorageDrs;
|
|
4752
|
-
|
|
4753
|
-
hasMinSpaceUtilizationDifference(): boolean;
|
|
4754
|
-
clearMinSpaceUtilizationDifference(): void;
|
|
4755
|
-
getMinSpaceUtilizationDifference(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4756
|
-
setMinSpaceUtilizationDifference(value?: google_protobuf_wrappers_pb.Int32Value): DatastoreClusterStorageDrs;
|
|
4757
|
-
|
|
4758
|
-
hasIoLatencyThreshold(): boolean;
|
|
4759
|
-
clearIoLatencyThreshold(): void;
|
|
4760
|
-
getIoLatencyThreshold(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4761
|
-
setIoLatencyThreshold(value?: google_protobuf_wrappers_pb.Int32Value): DatastoreClusterStorageDrs;
|
|
4762
|
-
|
|
4763
|
-
hasIoLoadImbalanceThreshold(): boolean;
|
|
4764
|
-
clearIoLoadImbalanceThreshold(): void;
|
|
4765
|
-
getIoLoadImbalanceThreshold(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4766
|
-
setIoLoadImbalanceThreshold(value?: google_protobuf_wrappers_pb.Int32Value): DatastoreClusterStorageDrs;
|
|
4767
|
-
|
|
4768
|
-
serializeBinary(): Uint8Array;
|
|
4769
|
-
toObject(includeInstance?: boolean): DatastoreClusterStorageDrs.AsObject;
|
|
4770
|
-
static toObject(includeInstance: boolean, msg: DatastoreClusterStorageDrs): DatastoreClusterStorageDrs.AsObject;
|
|
4771
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4772
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4773
|
-
static serializeBinaryToWriter(message: DatastoreClusterStorageDrs, writer: jspb.BinaryWriter): void;
|
|
4774
|
-
static deserializeBinary(bytes: Uint8Array): DatastoreClusterStorageDrs;
|
|
4775
|
-
static deserializeBinaryFromReader(message: DatastoreClusterStorageDrs, reader: jspb.BinaryReader): DatastoreClusterStorageDrs;
|
|
4776
|
-
}
|
|
4777
|
-
|
|
4778
|
-
export namespace DatastoreClusterStorageDrs {
|
|
4779
|
-
export type AsObject = {
|
|
4780
|
-
enabled: boolean,
|
|
4781
|
-
ioLoadBalanceEnabled: boolean,
|
|
4782
|
-
defaultVmBehaviour?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4783
|
-
loadBalanceInterval?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4784
|
-
defaultIntraVmAffinity?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
4785
|
-
spaceUtilizationThreshold?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4786
|
-
minSpaceUtilizationDifference?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4787
|
-
ioLatencyThreshold?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4788
|
-
ioLoadImbalanceThreshold?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
4789
|
-
}
|
|
4790
|
-
}
|
|
4791
|
-
|
|
4792
|
-
export class VmwareGuestNetwork extends jspb.Message {
|
|
4793
|
-
|
|
4794
|
-
hasName(): boolean;
|
|
4795
|
-
clearName(): void;
|
|
4796
|
-
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4797
|
-
setName(value?: google_protobuf_wrappers_pb.StringValue): VmwareGuestNetwork;
|
|
4798
|
-
|
|
4799
|
-
hasDnsAddresses(): boolean;
|
|
4800
|
-
clearDnsAddresses(): void;
|
|
4801
|
-
getDnsAddresses(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4802
|
-
setDnsAddresses(value?: google_protobuf_wrappers_pb.StringValue): VmwareGuestNetwork;
|
|
4803
|
-
|
|
4804
|
-
hasDomainName(): boolean;
|
|
4805
|
-
clearDomainName(): void;
|
|
4806
|
-
getDomainName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4807
|
-
setDomainName(value?: google_protobuf_wrappers_pb.StringValue): VmwareGuestNetwork;
|
|
4808
|
-
|
|
4809
|
-
hasIpv4DhcpEnabled(): boolean;
|
|
4810
|
-
clearIpv4DhcpEnabled(): void;
|
|
4811
|
-
getIpv4DhcpEnabled(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
4812
|
-
setIpv4DhcpEnabled(value?: google_protobuf_wrappers_pb.BoolValue): VmwareGuestNetwork;
|
|
4813
|
-
|
|
4814
|
-
hasIpv6DhcpEnabled(): boolean;
|
|
4815
|
-
clearIpv6DhcpEnabled(): void;
|
|
4816
|
-
getIpv6DhcpEnabled(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
4817
|
-
setIpv6DhcpEnabled(value?: google_protobuf_wrappers_pb.BoolValue): VmwareGuestNetwork;
|
|
4818
|
-
|
|
4819
|
-
hasIpv6Addresses(): boolean;
|
|
4820
|
-
clearIpv6Addresses(): void;
|
|
4821
|
-
getIpv6Addresses(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4822
|
-
setIpv6Addresses(value?: google_protobuf_wrappers_pb.StringValue): VmwareGuestNetwork;
|
|
4823
|
-
|
|
4824
|
-
hasIsConnected(): boolean;
|
|
4825
|
-
clearIsConnected(): void;
|
|
4826
|
-
getIsConnected(): google_protobuf_wrappers_pb.BoolValue | undefined;
|
|
4827
|
-
setIsConnected(value?: google_protobuf_wrappers_pb.BoolValue): VmwareGuestNetwork;
|
|
4828
|
-
|
|
4829
|
-
hasMac(): boolean;
|
|
4830
|
-
clearMac(): void;
|
|
4831
|
-
getMac(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4832
|
-
setMac(value?: google_protobuf_wrappers_pb.StringValue): VmwareGuestNetwork;
|
|
4833
|
-
|
|
4834
|
-
hasIpAddress(): boolean;
|
|
4835
|
-
clearIpAddress(): void;
|
|
4836
|
-
getIpAddress(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4837
|
-
setIpAddress(value?: google_protobuf_wrappers_pb.StringValue): VmwareGuestNetwork;
|
|
4838
|
-
|
|
4839
|
-
hasSubnetMask(): boolean;
|
|
4840
|
-
clearSubnetMask(): void;
|
|
4841
|
-
getSubnetMask(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4842
|
-
setSubnetMask(value?: google_protobuf_wrappers_pb.StringValue): VmwareGuestNetwork;
|
|
4843
|
-
|
|
4844
|
-
serializeBinary(): Uint8Array;
|
|
4845
|
-
toObject(includeInstance?: boolean): VmwareGuestNetwork.AsObject;
|
|
4846
|
-
static toObject(includeInstance: boolean, msg: VmwareGuestNetwork): VmwareGuestNetwork.AsObject;
|
|
4847
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4848
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4849
|
-
static serializeBinaryToWriter(message: VmwareGuestNetwork, writer: jspb.BinaryWriter): void;
|
|
4850
|
-
static deserializeBinary(bytes: Uint8Array): VmwareGuestNetwork;
|
|
4851
|
-
static deserializeBinaryFromReader(message: VmwareGuestNetwork, reader: jspb.BinaryReader): VmwareGuestNetwork;
|
|
4852
|
-
}
|
|
4853
|
-
|
|
4854
|
-
export namespace VmwareGuestNetwork {
|
|
4855
|
-
export type AsObject = {
|
|
4856
|
-
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4857
|
-
dnsAddresses?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4858
|
-
domainName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4859
|
-
ipv4DhcpEnabled?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
4860
|
-
ipv6DhcpEnabled?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
4861
|
-
ipv6Addresses?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4862
|
-
isConnected?: google_protobuf_wrappers_pb.BoolValue.AsObject,
|
|
4863
|
-
mac?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4864
|
-
ipAddress?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4865
|
-
subnetMask?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4866
|
-
}
|
|
4867
|
-
}
|
|
4868
|
-
|
|
4869
|
-
export class Snapshot extends jspb.Message {
|
|
4870
|
-
getInternalKey(): string;
|
|
4871
|
-
setInternalKey(value: string): Snapshot;
|
|
4872
|
-
|
|
4873
|
-
hasName(): boolean;
|
|
4874
|
-
clearName(): void;
|
|
4875
|
-
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4876
|
-
setName(value?: google_protobuf_wrappers_pb.StringValue): Snapshot;
|
|
4877
|
-
|
|
4878
|
-
hasCreateTime(): boolean;
|
|
4879
|
-
clearCreateTime(): void;
|
|
4880
|
-
getCreateTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4881
|
-
setCreateTime(value?: google_protobuf_timestamp_pb.Timestamp): Snapshot;
|
|
4882
|
-
|
|
4883
|
-
serializeBinary(): Uint8Array;
|
|
4884
|
-
toObject(includeInstance?: boolean): Snapshot.AsObject;
|
|
4885
|
-
static toObject(includeInstance: boolean, msg: Snapshot): Snapshot.AsObject;
|
|
4886
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4887
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4888
|
-
static serializeBinaryToWriter(message: Snapshot, writer: jspb.BinaryWriter): void;
|
|
4889
|
-
static deserializeBinary(bytes: Uint8Array): Snapshot;
|
|
4890
|
-
static deserializeBinaryFromReader(message: Snapshot, reader: jspb.BinaryReader): Snapshot;
|
|
4891
|
-
}
|
|
4892
|
-
|
|
4893
|
-
export namespace Snapshot {
|
|
4894
|
-
export type AsObject = {
|
|
4895
|
-
internalKey: string,
|
|
4896
|
-
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4897
|
-
createTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
4898
|
-
}
|
|
4899
|
-
}
|
|
4900
|
-
|
|
4901
|
-
export class AssetMacAddress extends jspb.Message {
|
|
4902
|
-
|
|
4903
|
-
hasMac(): boolean;
|
|
4904
|
-
clearMac(): void;
|
|
4905
|
-
getMac(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4906
|
-
setMac(value?: google_protobuf_wrappers_pb.StringValue): AssetMacAddress;
|
|
4907
|
-
|
|
4908
|
-
serializeBinary(): Uint8Array;
|
|
4909
|
-
toObject(includeInstance?: boolean): AssetMacAddress.AsObject;
|
|
4910
|
-
static toObject(includeInstance: boolean, msg: AssetMacAddress): AssetMacAddress.AsObject;
|
|
4911
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
4912
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
4913
|
-
static serializeBinaryToWriter(message: AssetMacAddress, writer: jspb.BinaryWriter): void;
|
|
4914
|
-
static deserializeBinary(bytes: Uint8Array): AssetMacAddress;
|
|
4915
|
-
static deserializeBinaryFromReader(message: AssetMacAddress, reader: jspb.BinaryReader): AssetMacAddress;
|
|
4916
|
-
}
|
|
4917
|
-
|
|
4918
|
-
export namespace AssetMacAddress {
|
|
4919
|
-
export type AsObject = {
|
|
4920
|
-
mac?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
4921
|
-
}
|
|
4922
|
-
}
|
|
4923
|
-
|
|
4924
|
-
export class VirtualMachine extends jspb.Message {
|
|
4925
|
-
getInternalKey(): string;
|
|
4926
|
-
setInternalKey(value: string): VirtualMachine;
|
|
4927
|
-
|
|
4928
|
-
hasEsxiKey(): boolean;
|
|
4929
|
-
clearEsxiKey(): void;
|
|
4930
|
-
getEsxiKey(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4931
|
-
setEsxiKey(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
4932
|
-
|
|
4933
|
-
hasBootTime(): boolean;
|
|
4934
|
-
clearBootTime(): void;
|
|
4935
|
-
getBootTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
4936
|
-
setBootTime(value?: google_protobuf_timestamp_pb.Timestamp): VirtualMachine;
|
|
4937
|
-
clearNetworkDevicesList(): void;
|
|
4938
|
-
getNetworkDevicesList(): Array<VmwareGuestNetwork>;
|
|
4939
|
-
setNetworkDevicesList(value: Array<VmwareGuestNetwork>): VirtualMachine;
|
|
4940
|
-
addNetworkDevices(value?: VmwareGuestNetwork, index?: number): VmwareGuestNetwork;
|
|
4941
|
-
|
|
4942
|
-
hasGuestId(): boolean;
|
|
4943
|
-
clearGuestId(): void;
|
|
4944
|
-
getGuestId(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4945
|
-
setGuestId(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
4946
|
-
|
|
4947
|
-
hasGuestFullName(): boolean;
|
|
4948
|
-
clearGuestFullName(): void;
|
|
4949
|
-
getGuestFullName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4950
|
-
setGuestFullName(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
4951
|
-
|
|
4952
|
-
hasHostName(): boolean;
|
|
4953
|
-
clearHostName(): void;
|
|
4954
|
-
getHostName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4955
|
-
setHostName(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
4956
|
-
|
|
4957
|
-
hasDomainName(): boolean;
|
|
4958
|
-
clearDomainName(): void;
|
|
4959
|
-
getDomainName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4960
|
-
setDomainName(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
4961
|
-
|
|
4962
|
-
hasFqdn(): boolean;
|
|
4963
|
-
clearFqdn(): void;
|
|
4964
|
-
getFqdn(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4965
|
-
setFqdn(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
4966
|
-
|
|
4967
|
-
hasVersion(): boolean;
|
|
4968
|
-
clearVersion(): void;
|
|
4969
|
-
getVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4970
|
-
setVersion(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
4971
|
-
|
|
4972
|
-
hasIpv4Address(): boolean;
|
|
4973
|
-
clearIpv4Address(): void;
|
|
4974
|
-
getIpv4Address(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4975
|
-
setIpv4Address(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
4976
|
-
|
|
4977
|
-
hasConfigName(): boolean;
|
|
4978
|
-
clearConfigName(): void;
|
|
4979
|
-
getConfigName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
4980
|
-
setConfigName(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
4981
|
-
|
|
4982
|
-
hasMemorySizeMb(): boolean;
|
|
4983
|
-
clearMemorySizeMb(): void;
|
|
4984
|
-
getMemorySizeMb(): google_protobuf_wrappers_pb.DoubleValue | undefined;
|
|
4985
|
-
setMemorySizeMb(value?: google_protobuf_wrappers_pb.DoubleValue): VirtualMachine;
|
|
4986
|
-
|
|
4987
|
-
hasNumCpu(): boolean;
|
|
4988
|
-
clearNumCpu(): void;
|
|
4989
|
-
getNumCpu(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4990
|
-
setNumCpu(value?: google_protobuf_wrappers_pb.Int32Value): VirtualMachine;
|
|
4991
|
-
|
|
4992
|
-
hasNumEthernetCards(): boolean;
|
|
4993
|
-
clearNumEthernetCards(): void;
|
|
4994
|
-
getNumEthernetCards(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
4995
|
-
setNumEthernetCards(value?: google_protobuf_wrappers_pb.Int32Value): VirtualMachine;
|
|
4996
|
-
|
|
4997
|
-
hasNumVirtualDisks(): boolean;
|
|
4998
|
-
clearNumVirtualDisks(): void;
|
|
4999
|
-
getNumVirtualDisks(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
5000
|
-
setNumVirtualDisks(value?: google_protobuf_wrappers_pb.Int32Value): VirtualMachine;
|
|
5001
|
-
|
|
5002
|
-
hasUuid(): boolean;
|
|
5003
|
-
clearUuid(): void;
|
|
5004
|
-
getUuid(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5005
|
-
setUuid(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
5006
|
-
|
|
5007
|
-
hasInstanceUuid(): boolean;
|
|
5008
|
-
clearInstanceUuid(): void;
|
|
5009
|
-
getInstanceUuid(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5010
|
-
setInstanceUuid(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
5011
|
-
|
|
5012
|
-
hasUnsharedStorage(): boolean;
|
|
5013
|
-
clearUnsharedStorage(): void;
|
|
5014
|
-
getUnsharedStorage(): google_protobuf_wrappers_pb.Int64Value | undefined;
|
|
5015
|
-
setUnsharedStorage(value?: google_protobuf_wrappers_pb.Int64Value): VirtualMachine;
|
|
5016
|
-
|
|
5017
|
-
hasIsRunning(): boolean;
|
|
5018
|
-
clearIsRunning(): void;
|
|
5019
|
-
getIsRunning(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5020
|
-
setIsRunning(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
5021
|
-
clearSnapshotsList(): void;
|
|
5022
|
-
getSnapshotsList(): Array<Snapshot>;
|
|
5023
|
-
setSnapshotsList(value: Array<Snapshot>): VirtualMachine;
|
|
5024
|
-
addSnapshots(value?: Snapshot, index?: number): Snapshot;
|
|
5025
|
-
|
|
5026
|
-
hasToolsVersion(): boolean;
|
|
5027
|
-
clearToolsVersion(): void;
|
|
5028
|
-
getToolsVersion(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5029
|
-
setToolsVersion(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
5030
|
-
|
|
5031
|
-
hasToolsStatus(): boolean;
|
|
5032
|
-
clearToolsStatus(): void;
|
|
5033
|
-
getToolsStatus(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5034
|
-
setToolsStatus(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
5035
|
-
|
|
5036
|
-
hasToolsVersionStatus(): boolean;
|
|
5037
|
-
clearToolsVersionStatus(): void;
|
|
5038
|
-
getToolsVersionStatus(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5039
|
-
setToolsVersionStatus(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
5040
|
-
|
|
5041
|
-
hasToolsRunningStatus(): boolean;
|
|
5042
|
-
clearToolsRunningStatus(): void;
|
|
5043
|
-
getToolsRunningStatus(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5044
|
-
setToolsRunningStatus(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
5045
|
-
|
|
5046
|
-
hasMacAddress(): boolean;
|
|
5047
|
-
clearMacAddress(): void;
|
|
5048
|
-
getMacAddress(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5049
|
-
setMacAddress(value?: google_protobuf_wrappers_pb.StringValue): VirtualMachine;
|
|
5050
|
-
getIsVmWareGuest(): boolean;
|
|
5051
|
-
setIsVmWareGuest(value: boolean): VirtualMachine;
|
|
5052
|
-
clearAssetMacAddressesList(): void;
|
|
5053
|
-
getAssetMacAddressesList(): Array<AssetMacAddress>;
|
|
5054
|
-
setAssetMacAddressesList(value: Array<AssetMacAddress>): VirtualMachine;
|
|
5055
|
-
addAssetMacAddresses(value?: AssetMacAddress, index?: number): AssetMacAddress;
|
|
5056
|
-
|
|
5057
|
-
serializeBinary(): Uint8Array;
|
|
5058
|
-
toObject(includeInstance?: boolean): VirtualMachine.AsObject;
|
|
5059
|
-
static toObject(includeInstance: boolean, msg: VirtualMachine): VirtualMachine.AsObject;
|
|
5060
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5061
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5062
|
-
static serializeBinaryToWriter(message: VirtualMachine, writer: jspb.BinaryWriter): void;
|
|
5063
|
-
static deserializeBinary(bytes: Uint8Array): VirtualMachine;
|
|
5064
|
-
static deserializeBinaryFromReader(message: VirtualMachine, reader: jspb.BinaryReader): VirtualMachine;
|
|
5065
|
-
}
|
|
5066
|
-
|
|
5067
|
-
export namespace VirtualMachine {
|
|
5068
|
-
export type AsObject = {
|
|
5069
|
-
internalKey: string,
|
|
5070
|
-
esxiKey?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5071
|
-
bootTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
5072
|
-
networkDevicesList: Array<VmwareGuestNetwork.AsObject>,
|
|
5073
|
-
guestId?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5074
|
-
guestFullName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5075
|
-
hostName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5076
|
-
domainName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5077
|
-
fqdn?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5078
|
-
version?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5079
|
-
ipv4Address?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5080
|
-
configName?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5081
|
-
memorySizeMb?: google_protobuf_wrappers_pb.DoubleValue.AsObject,
|
|
5082
|
-
numCpu?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
5083
|
-
numEthernetCards?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
5084
|
-
numVirtualDisks?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
5085
|
-
uuid?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5086
|
-
instanceUuid?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5087
|
-
unsharedStorage?: google_protobuf_wrappers_pb.Int64Value.AsObject,
|
|
5088
|
-
isRunning?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5089
|
-
snapshotsList: Array<Snapshot.AsObject>,
|
|
5090
|
-
toolsVersion?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5091
|
-
toolsStatus?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5092
|
-
toolsVersionStatus?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5093
|
-
toolsRunningStatus?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5094
|
-
macAddress?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5095
|
-
isVmWareGuest: boolean,
|
|
5096
|
-
assetMacAddressesList: Array<AssetMacAddress.AsObject>,
|
|
5097
|
-
}
|
|
5098
|
-
}
|
|
5099
|
-
|
|
5100
|
-
export class VmwareNetwork extends jspb.Message {
|
|
5101
|
-
|
|
5102
|
-
hasAssetId(): boolean;
|
|
5103
|
-
clearAssetId(): void;
|
|
5104
|
-
getAssetId(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
5105
|
-
setAssetId(value?: google_protobuf_wrappers_pb.Int32Value): VmwareNetwork;
|
|
5106
|
-
|
|
5107
|
-
hasName(): boolean;
|
|
5108
|
-
clearName(): void;
|
|
5109
|
-
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5110
|
-
setName(value?: google_protobuf_wrappers_pb.StringValue): VmwareNetwork;
|
|
5111
|
-
getNetworkType(): NetworkType;
|
|
5112
|
-
setNetworkType(value: NetworkType): VmwareNetwork;
|
|
5113
|
-
|
|
5114
|
-
hasIpv6Addresses(): boolean;
|
|
5115
|
-
clearIpv6Addresses(): void;
|
|
5116
|
-
getIpv6Addresses(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5117
|
-
setIpv6Addresses(value?: google_protobuf_wrappers_pb.StringValue): VmwareNetwork;
|
|
5118
|
-
|
|
5119
|
-
hasSpeed(): boolean;
|
|
5120
|
-
clearSpeed(): void;
|
|
5121
|
-
getSpeed(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
5122
|
-
setSpeed(value?: google_protobuf_wrappers_pb.Int32Value): VmwareNetwork;
|
|
5123
|
-
|
|
5124
|
-
hasMtu(): boolean;
|
|
5125
|
-
clearMtu(): void;
|
|
5126
|
-
getMtu(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
5127
|
-
setMtu(value?: google_protobuf_wrappers_pb.Int32Value): VmwareNetwork;
|
|
5128
|
-
|
|
5129
|
-
hasMac(): boolean;
|
|
5130
|
-
clearMac(): void;
|
|
5131
|
-
getMac(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5132
|
-
setMac(value?: google_protobuf_wrappers_pb.StringValue): VmwareNetwork;
|
|
5133
|
-
|
|
5134
|
-
hasIpAddress(): boolean;
|
|
5135
|
-
clearIpAddress(): void;
|
|
5136
|
-
getIpAddress(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5137
|
-
setIpAddress(value?: google_protobuf_wrappers_pb.StringValue): VmwareNetwork;
|
|
5138
|
-
|
|
5139
|
-
hasSubnetMask(): boolean;
|
|
5140
|
-
clearSubnetMask(): void;
|
|
5141
|
-
getSubnetMask(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5142
|
-
setSubnetMask(value?: google_protobuf_wrappers_pb.StringValue): VmwareNetwork;
|
|
5143
|
-
|
|
5144
|
-
serializeBinary(): Uint8Array;
|
|
5145
|
-
toObject(includeInstance?: boolean): VmwareNetwork.AsObject;
|
|
5146
|
-
static toObject(includeInstance: boolean, msg: VmwareNetwork): VmwareNetwork.AsObject;
|
|
5147
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5148
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5149
|
-
static serializeBinaryToWriter(message: VmwareNetwork, writer: jspb.BinaryWriter): void;
|
|
5150
|
-
static deserializeBinary(bytes: Uint8Array): VmwareNetwork;
|
|
5151
|
-
static deserializeBinaryFromReader(message: VmwareNetwork, reader: jspb.BinaryReader): VmwareNetwork;
|
|
5152
|
-
}
|
|
5153
|
-
|
|
5154
|
-
export namespace VmwareNetwork {
|
|
5155
|
-
export type AsObject = {
|
|
5156
|
-
assetId?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
5157
|
-
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5158
|
-
networkType: NetworkType,
|
|
5159
|
-
ipv6Addresses?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5160
|
-
speed?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
5161
|
-
mtu?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
5162
|
-
mac?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5163
|
-
ipAddress?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5164
|
-
subnetMask?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5165
|
-
}
|
|
5166
|
-
}
|
|
5167
|
-
|
|
5168
|
-
export class EsxiCluster extends jspb.Message {
|
|
5169
|
-
|
|
5170
|
-
hasName(): boolean;
|
|
5171
|
-
clearName(): void;
|
|
5172
|
-
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5173
|
-
setName(value?: google_protobuf_wrappers_pb.StringValue): EsxiCluster;
|
|
5174
|
-
|
|
5175
|
-
hasInternalKey(): boolean;
|
|
5176
|
-
clearInternalKey(): void;
|
|
5177
|
-
getInternalKey(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5178
|
-
setInternalKey(value?: google_protobuf_wrappers_pb.StringValue): EsxiCluster;
|
|
5179
|
-
|
|
5180
|
-
hasParentFolder(): boolean;
|
|
5181
|
-
clearParentFolder(): void;
|
|
5182
|
-
getParentFolder(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5183
|
-
setParentFolder(value?: google_protobuf_wrappers_pb.StringValue): EsxiCluster;
|
|
5184
|
-
clearHostsList(): void;
|
|
5185
|
-
getHostsList(): Array<Esxi>;
|
|
5186
|
-
setHostsList(value: Array<Esxi>): EsxiCluster;
|
|
5187
|
-
addHosts(value?: Esxi, index?: number): Esxi;
|
|
5188
|
-
getTotalCpu(): number;
|
|
5189
|
-
setTotalCpu(value: number): EsxiCluster;
|
|
5190
|
-
getTotalMemory(): number;
|
|
5191
|
-
setTotalMemory(value: number): EsxiCluster;
|
|
5192
|
-
getNumCpuCores(): number;
|
|
5193
|
-
setNumCpuCores(value: number): EsxiCluster;
|
|
5194
|
-
getNumCpuThreads(): number;
|
|
5195
|
-
setNumCpuThreads(value: number): EsxiCluster;
|
|
5196
|
-
getEffectiveCpu(): number;
|
|
5197
|
-
setEffectiveCpu(value: number): EsxiCluster;
|
|
5198
|
-
getEffectiveMemory(): number;
|
|
5199
|
-
setEffectiveMemory(value: number): EsxiCluster;
|
|
5200
|
-
getNumHosts(): number;
|
|
5201
|
-
setNumHosts(value: number): EsxiCluster;
|
|
5202
|
-
getNumEffectiveHosts(): number;
|
|
5203
|
-
setNumEffectiveHosts(value: number): EsxiCluster;
|
|
5204
|
-
|
|
5205
|
-
hasOverallStatus(): boolean;
|
|
5206
|
-
clearOverallStatus(): void;
|
|
5207
|
-
getOverallStatus(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5208
|
-
setOverallStatus(value?: google_protobuf_wrappers_pb.StringValue): EsxiCluster;
|
|
5209
|
-
|
|
5210
|
-
serializeBinary(): Uint8Array;
|
|
5211
|
-
toObject(includeInstance?: boolean): EsxiCluster.AsObject;
|
|
5212
|
-
static toObject(includeInstance: boolean, msg: EsxiCluster): EsxiCluster.AsObject;
|
|
5213
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5214
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5215
|
-
static serializeBinaryToWriter(message: EsxiCluster, writer: jspb.BinaryWriter): void;
|
|
5216
|
-
static deserializeBinary(bytes: Uint8Array): EsxiCluster;
|
|
5217
|
-
static deserializeBinaryFromReader(message: EsxiCluster, reader: jspb.BinaryReader): EsxiCluster;
|
|
5218
|
-
}
|
|
5219
|
-
|
|
5220
|
-
export namespace EsxiCluster {
|
|
5221
|
-
export type AsObject = {
|
|
5222
|
-
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5223
|
-
internalKey?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5224
|
-
parentFolder?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5225
|
-
hostsList: Array<Esxi.AsObject>,
|
|
5226
|
-
totalCpu: number,
|
|
5227
|
-
totalMemory: number,
|
|
5228
|
-
numCpuCores: number,
|
|
5229
|
-
numCpuThreads: number,
|
|
5230
|
-
effectiveCpu: number,
|
|
5231
|
-
effectiveMemory: number,
|
|
5232
|
-
numHosts: number,
|
|
5233
|
-
numEffectiveHosts: number,
|
|
5234
|
-
overallStatus?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5235
|
-
}
|
|
5236
|
-
}
|
|
5237
|
-
|
|
5238
|
-
export class DataCenter extends jspb.Message {
|
|
5239
|
-
getInternalKey(): string;
|
|
5240
|
-
setInternalKey(value: string): DataCenter;
|
|
5241
|
-
|
|
5242
|
-
hasName(): boolean;
|
|
5243
|
-
clearName(): void;
|
|
5244
|
-
getName(): google_protobuf_wrappers_pb.StringValue | undefined;
|
|
5245
|
-
setName(value?: google_protobuf_wrappers_pb.StringValue): DataCenter;
|
|
5246
|
-
clearDatastoresList(): void;
|
|
5247
|
-
getDatastoresList(): Array<Datastore>;
|
|
5248
|
-
setDatastoresList(value: Array<Datastore>): DataCenter;
|
|
5249
|
-
addDatastores(value?: Datastore, index?: number): Datastore;
|
|
5250
|
-
clearDatastoreClustersList(): void;
|
|
5251
|
-
getDatastoreClustersList(): Array<DatastoreCluster>;
|
|
5252
|
-
setDatastoreClustersList(value: Array<DatastoreCluster>): DataCenter;
|
|
5253
|
-
addDatastoreClusters(value?: DatastoreCluster, index?: number): DatastoreCluster;
|
|
5254
|
-
clearHostsList(): void;
|
|
5255
|
-
getHostsList(): Array<Esxi>;
|
|
5256
|
-
setHostsList(value: Array<Esxi>): DataCenter;
|
|
5257
|
-
addHosts(value?: Esxi, index?: number): Esxi;
|
|
5258
|
-
clearHostClustersList(): void;
|
|
5259
|
-
getHostClustersList(): Array<EsxiCluster>;
|
|
5260
|
-
setHostClustersList(value: Array<EsxiCluster>): DataCenter;
|
|
5261
|
-
addHostClusters(value?: EsxiCluster, index?: number): EsxiCluster;
|
|
5262
|
-
|
|
5263
|
-
serializeBinary(): Uint8Array;
|
|
5264
|
-
toObject(includeInstance?: boolean): DataCenter.AsObject;
|
|
5265
|
-
static toObject(includeInstance: boolean, msg: DataCenter): DataCenter.AsObject;
|
|
5266
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5267
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5268
|
-
static serializeBinaryToWriter(message: DataCenter, writer: jspb.BinaryWriter): void;
|
|
5269
|
-
static deserializeBinary(bytes: Uint8Array): DataCenter;
|
|
5270
|
-
static deserializeBinaryFromReader(message: DataCenter, reader: jspb.BinaryReader): DataCenter;
|
|
5271
|
-
}
|
|
5272
|
-
|
|
5273
|
-
export namespace DataCenter {
|
|
5274
|
-
export type AsObject = {
|
|
5275
|
-
internalKey: string,
|
|
5276
|
-
name?: google_protobuf_wrappers_pb.StringValue.AsObject,
|
|
5277
|
-
datastoresList: Array<Datastore.AsObject>,
|
|
5278
|
-
datastoreClustersList: Array<DatastoreCluster.AsObject>,
|
|
5279
|
-
hostsList: Array<Esxi.AsObject>,
|
|
5280
|
-
hostClustersList: Array<EsxiCluster.AsObject>,
|
|
5281
4162
|
}
|
|
5282
4163
|
}
|
|
5283
4164
|
|
|
@@ -6946,10 +5827,3 @@ export enum ClientEdition {
|
|
|
6946
5827
|
MICROSOFT_SURFACE_HUB = 16,
|
|
6947
5828
|
ANDROID_FOR_WORK = 17,
|
|
6948
5829
|
}
|
|
6949
|
-
|
|
6950
|
-
export enum NetworkType {
|
|
6951
|
-
NO_NETWORK_TYPE = 0,
|
|
6952
|
-
PHYSICAL = 1,
|
|
6953
|
-
VIRTUAL = 2,
|
|
6954
|
-
CONSOLE = 3,
|
|
6955
|
-
}
|