1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
|
package intune
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Code generated by Microsoft (R) AutoRest Code Generator 0.14.0.0
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
import (
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/date"
"github.com/Azure/go-autorest/autorest/to"
"net/http"
)
// AppSharingFromLevel enumerates the values for app sharing from level.
type AppSharingFromLevel string
const (
// AllApps specifies the all apps state for app sharing from level.
AllApps AppSharingFromLevel = "allApps"
// None specifies the none state for app sharing from level.
None AppSharingFromLevel = "none"
// PolicyManagedApps specifies the policy managed apps state for app
// sharing from level.
PolicyManagedApps AppSharingFromLevel = "policyManagedApps"
)
// AppSharingToLevel enumerates the values for app sharing to level.
type AppSharingToLevel string
const (
// AppSharingToLevelAllApps specifies the app sharing to level all apps
// state for app sharing to level.
AppSharingToLevelAllApps AppSharingToLevel = "allApps"
// AppSharingToLevelNone specifies the app sharing to level none state for
// app sharing to level.
AppSharingToLevelNone AppSharingToLevel = "none"
// AppSharingToLevelPolicyManagedApps specifies the app sharing to level
// policy managed apps state for app sharing to level.
AppSharingToLevelPolicyManagedApps AppSharingToLevel = "policyManagedApps"
)
// Authentication enumerates the values for authentication.
type Authentication string
const (
// NotRequired specifies the not required state for authentication.
NotRequired Authentication = "notRequired"
// Required specifies the required state for authentication.
Required Authentication = "required"
)
// ClipboardSharingLevel enumerates the values for clipboard sharing level.
type ClipboardSharingLevel string
const (
// ClipboardSharingLevelAllApps specifies the clipboard sharing level all
// apps state for clipboard sharing level.
ClipboardSharingLevelAllApps ClipboardSharingLevel = "allApps"
// ClipboardSharingLevelBlocked specifies the clipboard sharing level
// blocked state for clipboard sharing level.
ClipboardSharingLevelBlocked ClipboardSharingLevel = "blocked"
// ClipboardSharingLevelPolicyManagedApps specifies the clipboard sharing
// level policy managed apps state for clipboard sharing level.
ClipboardSharingLevelPolicyManagedApps ClipboardSharingLevel = "policyManagedApps"
// ClipboardSharingLevelPolicyManagedAppsWithPasteIn specifies the
// clipboard sharing level policy managed apps with paste in state for
// clipboard sharing level.
ClipboardSharingLevelPolicyManagedAppsWithPasteIn ClipboardSharingLevel = "policyManagedAppsWithPasteIn"
)
// DataBackup enumerates the values for data backup.
type DataBackup string
const (
// Allow specifies the allow state for data backup.
Allow DataBackup = "allow"
// Block specifies the block state for data backup.
Block DataBackup = "block"
)
// DeviceCompliance enumerates the values for device compliance.
type DeviceCompliance string
const (
// Disable specifies the disable state for device compliance.
Disable DeviceCompliance = "disable"
// Enable specifies the enable state for device compliance.
Enable DeviceCompliance = "enable"
)
// FileEncryption enumerates the values for file encryption.
type FileEncryption string
const (
// FileEncryptionNotRequired specifies the file encryption not required
// state for file encryption.
FileEncryptionNotRequired FileEncryption = "notRequired"
// FileEncryptionRequired specifies the file encryption required state for
// file encryption.
FileEncryptionRequired FileEncryption = "required"
)
// FileEncryptionLevel enumerates the values for file encryption level.
type FileEncryptionLevel string
const (
// AfterDeviceRestart specifies the after device restart state for file
// encryption level.
AfterDeviceRestart FileEncryptionLevel = "afterDeviceRestart"
// DeviceLocked specifies the device locked state for file encryption
// level.
DeviceLocked FileEncryptionLevel = "deviceLocked"
// DeviceLockedExceptFilesOpen specifies the device locked except files
// open state for file encryption level.
DeviceLockedExceptFilesOpen FileEncryptionLevel = "deviceLockedExceptFilesOpen"
// UseDeviceSettings specifies the use device settings state for file
// encryption level.
UseDeviceSettings FileEncryptionLevel = "useDeviceSettings"
)
// FileSharingSaveAs enumerates the values for file sharing save as.
type FileSharingSaveAs string
const (
// FileSharingSaveAsAllow specifies the file sharing save as allow state
// for file sharing save as.
FileSharingSaveAsAllow FileSharingSaveAs = "allow"
// FileSharingSaveAsBlock specifies the file sharing save as block state
// for file sharing save as.
FileSharingSaveAsBlock FileSharingSaveAs = "block"
)
// GroupStatus enumerates the values for group status.
type GroupStatus string
const (
// NotTargeted specifies the not targeted state for group status.
NotTargeted GroupStatus = "notTargeted"
// Targeted specifies the targeted state for group status.
Targeted GroupStatus = "targeted"
)
// ManagedBrowser enumerates the values for managed browser.
type ManagedBrowser string
const (
// ManagedBrowserNotRequired specifies the managed browser not required
// state for managed browser.
ManagedBrowserNotRequired ManagedBrowser = "notRequired"
// ManagedBrowserRequired specifies the managed browser required state for
// managed browser.
ManagedBrowserRequired ManagedBrowser = "required"
)
// Pin enumerates the values for pin.
type Pin string
const (
// PinNotRequired specifies the pin not required state for pin.
PinNotRequired Pin = "notRequired"
// PinRequired specifies the pin required state for pin.
PinRequired Pin = "required"
)
// Platform enumerates the values for platform.
type Platform string
const (
// Android specifies the android state for platform.
Android Platform = "android"
// Ios specifies the ios state for platform.
Ios Platform = "ios"
// Windows specifies the windows state for platform.
Windows Platform = "windows"
)
// ScreenCapture enumerates the values for screen capture.
type ScreenCapture string
const (
// ScreenCaptureAllow specifies the screen capture allow state for screen
// capture.
ScreenCaptureAllow ScreenCapture = "allow"
// ScreenCaptureBlock specifies the screen capture block state for screen
// capture.
ScreenCaptureBlock ScreenCapture = "block"
)
// TouchID enumerates the values for touch id.
type TouchID string
const (
// TouchIDDisable specifies the touch id disable state for touch id.
TouchIDDisable TouchID = "disable"
// TouchIDEnable specifies the touch id enable state for touch id.
TouchIDEnable TouchID = "enable"
)
// AndroidMAMPolicy is android Policy entity for Intune MAM.
type AndroidMAMPolicy struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Location *string `json:"location,omitempty"`
Properties *AndroidMAMPolicyProperties `json:"properties,omitempty"`
}
// AndroidMAMPolicyCollection is
type AndroidMAMPolicyCollection struct {
autorest.Response `json:"-"`
Value *[]AndroidMAMPolicy `json:"value,omitempty"`
Nextlink *string `json:"nextlink,omitempty"`
}
// AndroidMAMPolicyCollectionPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client AndroidMAMPolicyCollection) AndroidMAMPolicyCollectionPreparer() (*http.Request, error) {
if client.Nextlink == nil || len(to.String(client.Nextlink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.Nextlink)))
}
// AndroidMAMPolicyProperties is intune MAM iOS Policy Properties.
type AndroidMAMPolicyProperties struct {
FriendlyName *string `json:"friendlyName,omitempty"`
Description *string `json:"description,omitempty"`
AppSharingFromLevel AppSharingFromLevel `json:"appSharingFromLevel,omitempty"`
AppSharingToLevel AppSharingToLevel `json:"appSharingToLevel,omitempty"`
Authentication Authentication `json:"authentication,omitempty"`
ClipboardSharingLevel ClipboardSharingLevel `json:"clipboardSharingLevel,omitempty"`
DataBackup DataBackup `json:"dataBackup,omitempty"`
FileSharingSaveAs FileSharingSaveAs `json:"fileSharingSaveAs,omitempty"`
Pin Pin `json:"pin,omitempty"`
PinNumRetry *int32 `json:"pinNumRetry,omitempty"`
DeviceCompliance DeviceCompliance `json:"deviceCompliance,omitempty"`
ManagedBrowser ManagedBrowser `json:"managedBrowser,omitempty"`
AccessRecheckOfflineTimeout *string `json:"accessRecheckOfflineTimeout,omitempty"`
AccessRecheckOnlineTimeout *string `json:"accessRecheckOnlineTimeout,omitempty"`
OfflineWipeTimeout *string `json:"offlineWipeTimeout,omitempty"`
NumOfApps *int32 `json:"numOfApps,omitempty"`
GroupStatus GroupStatus `json:"groupStatus,omitempty"`
LastModifiedTime *date.Time `json:"lastModifiedTime,omitempty"`
ScreenCapture ScreenCapture `json:"screenCapture,omitempty"`
FileEncryption FileEncryption `json:"fileEncryption,omitempty"`
}
// Application is application entity for Intune MAM.
type Application struct {
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Location *string `json:"location,omitempty"`
Properties *ApplicationProperties `json:"properties,omitempty"`
}
// ApplicationCollection is
type ApplicationCollection struct {
autorest.Response `json:"-"`
Value *[]Application `json:"value,omitempty"`
Nextlink *string `json:"nextlink,omitempty"`
}
// ApplicationCollectionPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client ApplicationCollection) ApplicationCollectionPreparer() (*http.Request, error) {
if client.Nextlink == nil || len(to.String(client.Nextlink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.Nextlink)))
}
// ApplicationProperties is
type ApplicationProperties struct {
FriendlyName *string `json:"friendlyName,omitempty"`
Platform Platform `json:"platform,omitempty"`
AppID *string `json:"appId,omitempty"`
}
// Device is device entity for Intune.
type Device struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Location *string `json:"location,omitempty"`
Properties *DeviceProperties `json:"properties,omitempty"`
}
// DeviceCollection is
type DeviceCollection struct {
autorest.Response `json:"-"`
Value *[]Device `json:"value,omitempty"`
Nextlink *string `json:"nextlink,omitempty"`
}
// DeviceCollectionPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client DeviceCollection) DeviceCollectionPreparer() (*http.Request, error) {
if client.Nextlink == nil || len(to.String(client.Nextlink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.Nextlink)))
}
// DeviceProperties is
type DeviceProperties struct {
UserID *string `json:"userId,omitempty"`
FriendlyName *string `json:"friendlyName,omitempty"`
Platform *string `json:"platform,omitempty"`
PlatformVersion *string `json:"platformVersion,omitempty"`
DeviceType *string `json:"deviceType,omitempty"`
}
// Error is
type Error struct {
Code *string `json:"code,omitempty"`
Message *string `json:"message,omitempty"`
}
// FlaggedEnrolledApp is flagged Enrolled App for the given tenant.
type FlaggedEnrolledApp struct {
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Location *string `json:"location,omitempty"`
Properties *FlaggedEnrolledAppProperties `json:"properties,omitempty"`
}
// FlaggedEnrolledAppCollection is flagged Enrolled App collection for the
// given tenant.
type FlaggedEnrolledAppCollection struct {
autorest.Response `json:"-"`
Value *[]FlaggedEnrolledApp `json:"value,omitempty"`
Nextlink *string `json:"nextlink,omitempty"`
}
// FlaggedEnrolledAppCollectionPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client FlaggedEnrolledAppCollection) FlaggedEnrolledAppCollectionPreparer() (*http.Request, error) {
if client.Nextlink == nil || len(to.String(client.Nextlink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.Nextlink)))
}
// FlaggedEnrolledAppError is
type FlaggedEnrolledAppError struct {
ErrorCode *string `json:"errorCode,omitempty"`
Severity *string `json:"severity,omitempty"`
}
// FlaggedEnrolledAppProperties is
type FlaggedEnrolledAppProperties struct {
DeviceType *string `json:"deviceType,omitempty"`
FriendlyName *string `json:"friendlyName,omitempty"`
LastModifiedTime *string `json:"lastModifiedTime,omitempty"`
Platform *string `json:"platform,omitempty"`
Errors *[]FlaggedEnrolledAppError `json:"errors,omitempty"`
}
// FlaggedUser is flagged user for the given tenant.
type FlaggedUser struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Location *string `json:"location,omitempty"`
Properties *FlaggedUserProperties `json:"properties,omitempty"`
}
// FlaggedUserCollection is flagged user collection for the given tenant.
type FlaggedUserCollection struct {
autorest.Response `json:"-"`
Value *[]FlaggedUser `json:"value,omitempty"`
Nextlink *string `json:"nextlink,omitempty"`
}
// FlaggedUserCollectionPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client FlaggedUserCollection) FlaggedUserCollectionPreparer() (*http.Request, error) {
if client.Nextlink == nil || len(to.String(client.Nextlink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.Nextlink)))
}
// FlaggedUserProperties is
type FlaggedUserProperties struct {
ErrorCount *int32 `json:"errorCount,omitempty"`
FriendlyName *string `json:"friendlyName,omitempty"`
}
// GroupItem is group entity for Intune MAM.
type GroupItem struct {
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Location *string `json:"location,omitempty"`
Properties *GroupProperties `json:"properties,omitempty"`
}
// GroupProperties is
type GroupProperties struct {
FriendlyName *string `json:"friendlyName,omitempty"`
}
// GroupsCollection is
type GroupsCollection struct {
autorest.Response `json:"-"`
Value *[]GroupItem `json:"value,omitempty"`
Nextlink *string `json:"nextlink,omitempty"`
}
// GroupsCollectionPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client GroupsCollection) GroupsCollectionPreparer() (*http.Request, error) {
if client.Nextlink == nil || len(to.String(client.Nextlink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.Nextlink)))
}
// IOSMAMPolicy is iOS Policy entity for Intune MAM.
type IOSMAMPolicy struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Location *string `json:"location,omitempty"`
Properties *IOSMAMPolicyProperties `json:"properties,omitempty"`
}
// IOSMAMPolicyCollection is
type IOSMAMPolicyCollection struct {
autorest.Response `json:"-"`
Value *[]IOSMAMPolicy `json:"value,omitempty"`
Nextlink *string `json:"nextlink,omitempty"`
}
// IOSMAMPolicyCollectionPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client IOSMAMPolicyCollection) IOSMAMPolicyCollectionPreparer() (*http.Request, error) {
if client.Nextlink == nil || len(to.String(client.Nextlink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.Nextlink)))
}
// IOSMAMPolicyProperties is intune MAM iOS Policy Properties.
type IOSMAMPolicyProperties struct {
FriendlyName *string `json:"friendlyName,omitempty"`
Description *string `json:"description,omitempty"`
AppSharingFromLevel AppSharingFromLevel `json:"appSharingFromLevel,omitempty"`
AppSharingToLevel AppSharingToLevel `json:"appSharingToLevel,omitempty"`
Authentication Authentication `json:"authentication,omitempty"`
ClipboardSharingLevel ClipboardSharingLevel `json:"clipboardSharingLevel,omitempty"`
DataBackup DataBackup `json:"dataBackup,omitempty"`
FileSharingSaveAs FileSharingSaveAs `json:"fileSharingSaveAs,omitempty"`
Pin Pin `json:"pin,omitempty"`
PinNumRetry *int32 `json:"pinNumRetry,omitempty"`
DeviceCompliance DeviceCompliance `json:"deviceCompliance,omitempty"`
ManagedBrowser ManagedBrowser `json:"managedBrowser,omitempty"`
AccessRecheckOfflineTimeout *string `json:"accessRecheckOfflineTimeout,omitempty"`
AccessRecheckOnlineTimeout *string `json:"accessRecheckOnlineTimeout,omitempty"`
OfflineWipeTimeout *string `json:"offlineWipeTimeout,omitempty"`
NumOfApps *int32 `json:"numOfApps,omitempty"`
GroupStatus GroupStatus `json:"groupStatus,omitempty"`
LastModifiedTime *date.Time `json:"lastModifiedTime,omitempty"`
FileEncryptionLevel FileEncryptionLevel `json:"fileEncryptionLevel,omitempty"`
TouchID TouchID `json:"touchId,omitempty"`
}
// Location is location entity for given tenant.
type Location struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Location *string `json:"location,omitempty"`
Properties *LocationProperties `json:"properties,omitempty"`
}
// LocationCollection is
type LocationCollection struct {
autorest.Response `json:"-"`
Value *[]Location `json:"value,omitempty"`
Nextlink *string `json:"nextlink,omitempty"`
}
// LocationCollectionPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client LocationCollection) LocationCollectionPreparer() (*http.Request, error) {
if client.Nextlink == nil || len(to.String(client.Nextlink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.Nextlink)))
}
// LocationProperties is
type LocationProperties struct {
HostName *string `json:"hostName,omitempty"`
}
// MAMPolicyAppIDOrGroupIDPayload is mAM Policy request body for properties
// Intune MAM.
type MAMPolicyAppIDOrGroupIDPayload struct {
Properties *MAMPolicyAppOrGroupIDProperties `json:"properties,omitempty"`
}
// MAMPolicyAppOrGroupIDProperties is android Policy request body for Intune
// MAM.
type MAMPolicyAppOrGroupIDProperties struct {
URL *string `json:"url,omitempty"`
}
// MAMPolicyProperties is
type MAMPolicyProperties struct {
FriendlyName *string `json:"friendlyName,omitempty"`
Description *string `json:"description,omitempty"`
AppSharingFromLevel AppSharingFromLevel `json:"appSharingFromLevel,omitempty"`
AppSharingToLevel AppSharingToLevel `json:"appSharingToLevel,omitempty"`
Authentication Authentication `json:"authentication,omitempty"`
ClipboardSharingLevel ClipboardSharingLevel `json:"clipboardSharingLevel,omitempty"`
DataBackup DataBackup `json:"dataBackup,omitempty"`
FileSharingSaveAs FileSharingSaveAs `json:"fileSharingSaveAs,omitempty"`
Pin Pin `json:"pin,omitempty"`
PinNumRetry *int32 `json:"pinNumRetry,omitempty"`
DeviceCompliance DeviceCompliance `json:"deviceCompliance,omitempty"`
ManagedBrowser ManagedBrowser `json:"managedBrowser,omitempty"`
AccessRecheckOfflineTimeout *string `json:"accessRecheckOfflineTimeout,omitempty"`
AccessRecheckOnlineTimeout *string `json:"accessRecheckOnlineTimeout,omitempty"`
OfflineWipeTimeout *string `json:"offlineWipeTimeout,omitempty"`
NumOfApps *int32 `json:"numOfApps,omitempty"`
GroupStatus GroupStatus `json:"groupStatus,omitempty"`
LastModifiedTime *date.Time `json:"lastModifiedTime,omitempty"`
}
// OperationMetadataProperties is
type OperationMetadataProperties struct {
Name *string `json:"name,omitempty"`
Value *string `json:"value,omitempty"`
}
// OperationResult is operationResult entity for Intune.
type OperationResult struct {
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Location *string `json:"location,omitempty"`
Properties *OperationResultProperties `json:"properties,omitempty"`
}
// OperationResultCollection is
type OperationResultCollection struct {
autorest.Response `json:"-"`
Value *[]OperationResult `json:"value,omitempty"`
Nextlink *string `json:"nextlink,omitempty"`
}
// OperationResultCollectionPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client OperationResultCollection) OperationResultCollectionPreparer() (*http.Request, error) {
if client.Nextlink == nil || len(to.String(client.Nextlink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.Nextlink)))
}
// OperationResultProperties is
type OperationResultProperties struct {
FriendlyName *string `json:"friendlyName,omitempty"`
Category *string `json:"category,omitempty"`
LastModifiedTime *string `json:"lastModifiedTime,omitempty"`
State *string `json:"state,omitempty"`
OperationMetadata *[]OperationMetadataProperties `json:"operationMetadata,omitempty"`
}
// Resource is
type Resource struct {
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Location *string `json:"location,omitempty"`
}
// StatusesDefault is default Statuses entity for the given tenant.
type StatusesDefault struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Location *string `json:"location,omitempty"`
Properties *StatusesProperties `json:"properties,omitempty"`
Nextlink *string `json:",omitempty"`
}
// StatusesDefaultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client StatusesDefault) StatusesDefaultPreparer() (*http.Request, error) {
if client.Nextlink == nil || len(to.String(client.Nextlink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.Nextlink)))
}
// StatusesProperties is
type StatusesProperties struct {
DeployedPolicies *int32 `json:"deployedPolicies,omitempty"`
EnrolledUsers *int32 `json:"enrolledUsers,omitempty"`
FlaggedUsers *int32 `json:"flaggedUsers,omitempty"`
LastModifiedTime *date.Time `json:"lastModifiedTime,omitempty"`
PolicyAppliedUsers *int32 `json:"policyAppliedUsers,omitempty"`
Status *string `json:"status,omitempty"`
WipeFailedApps *int32 `json:"wipeFailedApps,omitempty"`
WipePendingApps *int32 `json:"wipePendingApps,omitempty"`
WipeSucceededApps *int32 `json:"wipeSucceededApps,omitempty"`
}
// WipeDeviceOperationResult is device entity for Intune.
type WipeDeviceOperationResult struct {
autorest.Response `json:"-"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
Tags *map[string]*string `json:"tags,omitempty"`
Location *string `json:"location,omitempty"`
Properties *WipeDeviceOperationResultProperties `json:"properties,omitempty"`
}
// WipeDeviceOperationResultProperties is
type WipeDeviceOperationResultProperties struct {
Value *string `json:"value,omitempty"`
}
|