package
0.0.0-20231018133601-58a68a826479
Repository: https://github.com/jc0b/go-jamf-api.git
Documentation: pkg.go.dev

# README

Go API client for api

Overview

The Jamf Pro API is a RESTful API for Jamf Pro built to enable consistent and efficient programmatic access to Jamf Pro.

The swagger schema can be found here.

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: production
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import api "github.com/yohan460/go-jamf-api/api"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), api.ContextServerIndex, 1)

Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), api.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), api.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), api.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to /api

ClassMethodHTTP requestDescription
AdvancedMobileDeviceSearchesApiV1AdvancedMobileDeviceSearchesChoicesGetGet /v1/advanced-mobile-device-searches/choicesGet Mobile Device Advanced Search criteria choices
AdvancedMobileDeviceSearchesApiV1AdvancedMobileDeviceSearchesDeleteMultiplePostPost /v1/advanced-mobile-device-searches/delete-multipleRemove specified Advanced Search objects
AdvancedMobileDeviceSearchesApiV1AdvancedMobileDeviceSearchesGetGet /v1/advanced-mobile-device-searchesGet Advanced Search objects
AdvancedMobileDeviceSearchesApiV1AdvancedMobileDeviceSearchesIdDeleteDelete /v1/advanced-mobile-device-searches/{id}Remove specified Advanced Search object
AdvancedMobileDeviceSearchesApiV1AdvancedMobileDeviceSearchesIdGetGet /v1/advanced-mobile-device-searches/{id}Get specified Advanced Search object
AdvancedMobileDeviceSearchesApiV1AdvancedMobileDeviceSearchesIdPutPut /v1/advanced-mobile-device-searches/{id}Get specified Advanced Search object
AdvancedMobileDeviceSearchesApiV1AdvancedMobileDeviceSearchesPostPost /v1/advanced-mobile-device-searchesCreate Advanced Search object
AdvancedUserContentSearchesApiV1AdvancedUserContentSearchesGetGet /v1/advanced-user-content-searchesGet All Advanced User Content Search objects
AdvancedUserContentSearchesApiV1AdvancedUserContentSearchesIdDeleteDelete /v1/advanced-user-content-searches/{id}Remove specified Advanced User Content Search object
AdvancedUserContentSearchesApiV1AdvancedUserContentSearchesIdGetGet /v1/advanced-user-content-searches/{id}Get Specified Advanced User Content Search object
AdvancedUserContentSearchesApiV1AdvancedUserContentSearchesIdPutPut /v1/advanced-user-content-searches/{id}Get Specified Advanced User Content Search object
AdvancedUserContentSearchesApiV1AdvancedUserContentSearchesPostPost /v1/advanced-user-content-searchesCreate Advanced User Content Search object
ApiAuthenticationApiAuthCurrentPostPost /auth/currentGet the authorization details associated with the current API token
ApiAuthenticationApiAuthGetGet /authGet all the Authorization details associated with the current api
ApiAuthenticationApiAuthInvalidateTokenPostPost /auth/invalidateTokenInvalidate current token
ApiAuthenticationApiAuthKeepAlivePostPost /auth/keepAliveInvalidate existing token and generates new token
ApiAuthenticationApiAuthTokensPostPost /auth/tokensCreate a token based on other authentication details (basic, etc.)
ApiAuthenticationApiV1AuthGetGet /v1/authGet all the Authorization details associated with the current api
ApiAuthenticationApiV1AuthInvalidateTokenPostPost /v1/auth/invalidate-tokenInvalidate current token
ApiAuthenticationApiV1AuthKeepAlivePostPost /v1/auth/keep-aliveInvalidate existing token and generates new token
ApiAuthenticationApiV1AuthTokenPostPost /v1/auth/tokenCreate a token based on other authentication details (basic, etc.)
AppDynamicsConfigurationPreviewApiV1AppDynamicsScriptConfigurationGetGet /v1/app-dynamics/script-configurationGet Application Dynamics Config object
AppRequestPreviewApiV1AppRequestFormInputFieldsGetGet /v1/app-request/form-input-fieldsSearch for Form Input Fields
AppRequestPreviewApiV1AppRequestFormInputFieldsIdDeleteDelete /v1/app-request/form-input-fields/{id}Remove specified Form Input Field record
AppRequestPreviewApiV1AppRequestFormInputFieldsIdGetGet /v1/app-request/form-input-fields/{id}Get specified Form Input Field object
AppRequestPreviewApiV1AppRequestFormInputFieldsIdPutPut /v1/app-request/form-input-fields/{id}Update specified Form Input Field object
AppRequestPreviewApiV1AppRequestFormInputFieldsPostPost /v1/app-request/form-input-fieldsCreate Form Input Field record
AppRequestPreviewApiV1AppRequestFormInputFieldsPutPut /v1/app-request/form-input-fieldsReplace all Form Input Fields
AppRequestPreviewApiV1AppRequestSettingsGetGet /v1/app-request/settingsGet Applicastion Request Settings
AppRequestPreviewApiV1AppRequestSettingsPutPut /v1/app-request/settingsUpdate Application Request Settings
AppStoreCountryCodesPreviewApiV1AppStoreCountryCodesGetGet /v1/app-store-country-codesReturn a list of Countries and the associated Codes
BuildingsApiV1BuildingsDeleteMultiplePostPost /v1/buildings/delete-multipleDelete multiple Buildings by their ids
BuildingsApiV1BuildingsGetGet /v1/buildingsSearch for sorted and paged Buildings
BuildingsApiV1BuildingsIdDeleteDelete /v1/buildings/{id}Remove specified Building record
BuildingsApiV1BuildingsIdGetGet /v1/buildings/{id}Get specified Building object
BuildingsApiV1BuildingsIdHistoryGetGet /v1/buildings/{id}/historyGet specified Building History object
BuildingsApiV1BuildingsIdHistoryPostPost /v1/buildings/{id}/historyAdd specified Building history object notes
BuildingsApiV1BuildingsIdPutPut /v1/buildings/{id}Update specified Building object
BuildingsApiV1BuildingsPostPost /v1/buildingsCreate Building record
CacheSettingsApiV1CacheSettingsGetGet /v1/cache-settingsGet Cache Settings
CacheSettingsApiV1CacheSettingsPutPut /v1/cache-settingsUpdate Cache Settings
CategoriesApiV1CategoriesDeleteMultiplePostPost /v1/categories/delete-multipleDelete multiple Categories by their IDs
CategoriesApiV1CategoriesGetGet /v1/categoriesGet Category objects
CategoriesApiV1CategoriesIdDeleteDelete /v1/categories/{id}Remove specified Category record
CategoriesApiV1CategoriesIdGetGet /v1/categories/{id}Get specified Category object
CategoriesApiV1CategoriesIdHistoryGetGet /v1/categories/{id}/historyGet specified Category history object
CategoriesApiV1CategoriesIdHistoryPostPost /v1/categories/{id}/historyAdd specified Category history object notes
CategoriesApiV1CategoriesIdPutPut /v1/categories/{id}Update specified Category object
CategoriesApiV1CategoriesPostPost /v1/categoriesCreate Category record
CertificateAuthorityApiV1PkiCertificateAuthorityActiveDerGetGet /v1/pki/certificate-authority/active/derReturns X.509 of active Certificate Authority (CA) in DER format
CertificateAuthorityApiV1PkiCertificateAuthorityActiveGetGet /v1/pki/certificate-authority/activeReturns X.509 details of the active Certificate Authority (CA)
CertificateAuthorityApiV1PkiCertificateAuthorityActivePemGetGet /v1/pki/certificate-authority/active/pemReturns active Certificate Authority (CA) in PEM format
CertificateAuthorityApiV1PkiCertificateAuthorityIdDerGetGet /v1/pki/certificate-authority/{id}/derReturns X.509 current Certificate Authority (CA) with provided ID in DER format
CertificateAuthorityApiV1PkiCertificateAuthorityIdGetGet /v1/pki/certificate-authority/{id}Returns X.509 details of Certificate Authority (CA) with provided ID
CertificateAuthorityApiV1PkiCertificateAuthorityIdPemGetGet /v1/pki/certificate-authority/{id}/pemReturns current Certificate Authority (CA) with provided ID in PEM format
ClassicLdapApiV1ClassicLdapIdGetGet /v1/classic-ldap/{id}Get mappings for OnPrem Ldap configuration with given id.
ClientCheckInApiV2CheckInGetGet /v2/check-inGet Client Check-In settings
ClientCheckInApiV2CheckInHistoryGetGet /v2/check-in/historyGet Client Check-In history object
ClientCheckInApiV2CheckInHistoryPostPost /v2/check-in/historyAdd a Note to Client Check-In History
ClientCheckInApiV2CheckInPutPut /v2/check-inUpdate Client Check-In object
ClientCheckInApiV3CheckInGetGet /v3/check-inGet Client Check-In settings
ClientCheckInApiV3CheckInHistoryGetGet /v3/check-in/historyGet Client Check-In history object
ClientCheckInApiV3CheckInHistoryPostPost /v3/check-in/historyAdd a Note to Client Check-In History
ClientCheckInApiV3CheckInPutPut /v3/check-inUpdate Client Check-In object
CloudAzureApiV1AzureAdMigrationReportsIdDownloadGetGet /v1/azure-ad-migration/reports/{id}/downloadDownload report of provided report ID
CloudAzureApiV1AzureAdMigrationReportsIdGetGet /v1/azure-ad-migration/reports/{id}Check status of azure ad migration report
CloudAzureApiV1AzureAdMigrationReportsPendingGetGet /v1/azure-ad-migration/reports/pendingGet pending azure migration report
CloudAzureApiV1AzureAdMigrationReportsPostPost /v1/azure-ad-migration/reportsStart Azure Ad Migration report generation
CloudAzureApiV1CloudAzureDefaultsMappingsGetGet /v1/cloud-azure/defaults/mappingsGet default mappings
CloudAzureApiV1CloudAzureDefaultsServerConfigurationGetGet /v1/cloud-azure/defaults/server-configurationGet default server configuration
CloudAzureApiV1CloudAzureIdDeleteDelete /v1/cloud-azure/{id}Delete Cloud Identity Provider configuration.
CloudAzureApiV1CloudAzureIdGetGet /v1/cloud-azure/{id}Get Azure Cloud Identity Provider configuration with given ID.
CloudAzureApiV1CloudAzureIdPutPut /v1/cloud-azure/{id}Update Azure Cloud Identity Provider configuration
CloudAzureApiV1CloudAzurePostPost /v1/cloud-azureCreate Azure Cloud Identity Provider configuration
CloudIdpApiV1CloudIdpExportPostPost /v1/cloud-idp/exportExport Cloud Identity Providers collection
CloudIdpApiV1CloudIdpGetGet /v1/cloud-idpGet information about all Cloud Identity Providers configurations.
CloudIdpApiV1CloudIdpIdGetGet /v1/cloud-idp/{id}Get Cloud Identity Provider configuration with given ID.
CloudIdpApiV1CloudIdpIdHistoryGetGet /v1/cloud-idp/{id}/historyGet Cloud Identity Provider history
CloudIdpApiV1CloudIdpIdHistoryPostPost /v1/cloud-idp/{id}/historyAdd Cloud Identity Provider history note
CloudIdpApiV1CloudIdpIdTestGroupPostPost /v1/cloud-idp/{id}/test-groupGet group test search
CloudIdpApiV1CloudIdpIdTestUserMembershipPostPost /v1/cloud-idp/{id}/test-user-membershipGet membership test search
CloudIdpApiV1CloudIdpIdTestUserPostPost /v1/cloud-idp/{id}/test-userGet user test search
CloudLdapApiV1CloudLdapsDefaultsMappingsGetGet /v1/cloud-ldaps/defaults/mappingsGet default mappings
CloudLdapApiV1CloudLdapsDefaultsServerConfigurationGetGet /v1/cloud-ldaps/defaults/server-configurationGet default server configuration
CloudLdapApiV1CloudLdapsGetGet /v1/cloud-ldapsGet all Cloud Identity Providers configurations.
CloudLdapApiV1CloudLdapsIdConnectionBindGetGet /v1/cloud-ldaps/{id}/connection/bindGet bind connection pool statistics
CloudLdapApiV1CloudLdapsIdConnectionSearchGetGet /v1/cloud-ldaps/{id}/connection/searchGet search connection pool statistics
CloudLdapApiV1CloudLdapsIdDeleteDelete /v1/cloud-ldaps/{id}Delete Cloud Identity Provider configuration.
CloudLdapApiV1CloudLdapsIdGetGet /v1/cloud-ldaps/{id}Get Cloud Identity Provider configuration with given id.
CloudLdapApiV1CloudLdapsIdHistoryGetGet /v1/cloud-ldaps/{id}/historyGet Cloud Identity Provider history
CloudLdapApiV1CloudLdapsIdHistoryPostPost /v1/cloud-ldaps/{id}/historyAdd Cloud Identity Provider history note
CloudLdapApiV1CloudLdapsIdMappingsGetGet /v1/cloud-ldaps/{id}/mappingsGet mappings configurations for Cloud Identity Providers server configuration.
CloudLdapApiV1CloudLdapsIdMappingsPutPut /v1/cloud-ldaps/{id}/mappingsUpdate Cloud Identity Provider mappings configuration.
CloudLdapApiV1CloudLdapsIdPutPut /v1/cloud-ldaps/{id}Old update Cloud Identity Provider configuration
CloudLdapApiV1CloudLdapsIdTestGroupPostPost /v1/cloud-ldaps/{id}/test-groupGet group test search
CloudLdapApiV1CloudLdapsIdTestUserMembershipPostPost /v1/cloud-ldaps/{id}/test-user-membershipGet membership test search
CloudLdapApiV1CloudLdapsIdTestUserPostPost /v1/cloud-ldaps/{id}/test-userGet user test search
CloudLdapApiV1CloudLdapsPostPost /v1/cloud-ldapsCreate Cloud Identity Provider configuration
CloudLdapApiV1LdapKeystoreVerifyPostPost /v1/ldap-keystore/verifyValidate keystore for Cloud Identity Provider secure connection
CloudLdapApiV2CloudLdapsDefaultsProviderMappingsGetGet /v2/cloud-ldaps/defaults/{provider}/mappingsGet default mappings
CloudLdapApiV2CloudLdapsDefaultsProviderServerConfigurationGetGet /v2/cloud-ldaps/defaults/{provider}/server-configurationGet default server configuration
CloudLdapApiV2CloudLdapsIdConnectionBindGetGet /v2/cloud-ldaps/{id}/connection/bindGet bind connection pool statistics
CloudLdapApiV2CloudLdapsIdConnectionSearchGetGet /v2/cloud-ldaps/{id}/connection/searchGet search connection pool statistics
CloudLdapApiV2CloudLdapsIdConnectionStatusGetGet /v2/cloud-ldaps/{id}/connection/statusTests the communication with the specified cloud connection
CloudLdapApiV2CloudLdapsIdDeleteDelete /v2/cloud-ldaps/{id}Delete Cloud Identity Provider configuration.
CloudLdapApiV2CloudLdapsIdGetGet /v2/cloud-ldaps/{id}Get Cloud Identity Provider configuration with given id.
CloudLdapApiV2CloudLdapsIdMappingsGetGet /v2/cloud-ldaps/{id}/mappingsGet mappings configurations for Cloud Identity Providers server configuration.
CloudLdapApiV2CloudLdapsIdMappingsPutPut /v2/cloud-ldaps/{id}/mappingsUpdate Cloud Identity Provider mappings configuration.
CloudLdapApiV2CloudLdapsIdPutPut /v2/cloud-ldaps/{id}Update Cloud Identity Provider configuration
CloudLdapApiV2CloudLdapsPostPost /v2/cloud-ldapsCreate Cloud Identity Provider configuration
ComputerInventoryApiV1ComputersInventoryDetailIdGetGet /v1/computers-inventory-detail/{id}Return a Computer details with all sections
ComputerInventoryApiV1ComputersInventoryDetailIdPatchPatch /v1/computers-inventory-detail/{id}Return a updated computer instance
ComputerInventoryApiV1ComputersInventoryGetGet /v1/computers-inventoryReturn a Computer Inventory for paginated list of computers
ComputerInventoryApiV1ComputersInventoryIdAttachmentsAttachmentIdDeleteDelete /v1/computers-inventory/{id}/attachments/{attachmentId}Remove attachment
ComputerInventoryApiV1ComputersInventoryIdAttachmentsAttachmentIdGetGet /v1/computers-inventory/{id}/attachments/{attachmentId}Download attachment file
ComputerInventoryApiV1ComputersInventoryIdAttachmentsPostPost /v1/computers-inventory/{id}/attachmentsUpload attachment and assign to computer
ComputerInventoryApiV1ComputersInventoryIdDeleteDelete /v1/computers-inventory/{id}Remove specified Computer record
ComputerInventoryApiV1ComputersInventoryIdGetGet /v1/computers-inventory/{id}Return a Computer General details
ComputerInventoryApiV1ComputersInventoryIdViewRecoveryLockPasswordGetGet /v1/computers-inventory/{id}/view-recovery-lock-passwordReturn a Computers Recovery Lock Password
ComputerInventoryCollectionSettingsApiV1ComputerInventoryCollectionSettingsCustomPathIdDeleteDelete /v1/computer-inventory-collection-settings/custom-path/{id}Delete Custom Path from Computer Inventory Collection Settings
ComputerInventoryCollectionSettingsApiV1ComputerInventoryCollectionSettingsCustomPathPostPost /v1/computer-inventory-collection-settings/custom-pathCreate Computer Inventory Collection Settings Custom Path
ComputerInventoryCollectionSettingsApiV1ComputerInventoryCollectionSettingsGetGet /v1/computer-inventory-collection-settingsReturns computer inventory settings
ComputerInventoryCollectionSettingsApiV1ComputerInventoryCollectionSettingsPatchPatch /v1/computer-inventory-collection-settingsUpdate computer inventory settings
ComputerPrestagesApiV1ComputerPrestagesGetGet /v1/computer-prestagesSearch for sorted and paged Computer Prestages
ComputerPrestagesApiV1ComputerPrestagesIdDeleteDelete /v1/computer-prestages/{id}Delete a Computer Prestage with the supplied id
ComputerPrestagesApiV1ComputerPrestagesIdGetGet /v1/computer-prestages/{id}Retrieve a Computer Prestage with the supplied id
ComputerPrestagesApiV1ComputerPrestagesIdPutPut /v1/computer-prestages/{id}Update a Computer Prestage
ComputerPrestagesApiV1ComputerPrestagesIdScopeDeleteDelete /v1/computer-prestages/{id}/scopeRemove device Scope for a specific Computer Prestage
ComputerPrestagesApiV1ComputerPrestagesIdScopeGetGet /v1/computer-prestages/{id}/scopeGet device Scope for a specific Computer Prestage
ComputerPrestagesApiV1ComputerPrestagesIdScopePostPost /v1/computer-prestages/{id}/scopeAdd device Scope for a specific Computer Prestage
ComputerPrestagesApiV1ComputerPrestagesIdScopePutPut /v1/computer-prestages/{id}/scopeReplace device Scope for a specific Computer Prestage
ComputerPrestagesApiV1ComputerPrestagesPostPost /v1/computer-prestagesCreate a Computer Prestage
ComputerPrestagesApiV1ComputerPrestagesScopeGetGet /v1/computer-prestages/scopeGet all device Scope for all Computer Prestages
ComputerPrestagesApiV2ComputerPrestagesGetGet /v2/computer-prestagesGet sorted and paged Computer Prestages
ComputerPrestagesApiV2ComputerPrestagesIdDeleteDelete /v2/computer-prestages/{id}Delete a Computer Prestage with the supplied id
ComputerPrestagesApiV2ComputerPrestagesIdGetGet /v2/computer-prestages/{id}Retrieve a Computer Prestage with the supplied id
ComputerPrestagesApiV2ComputerPrestagesIdPutPut /v2/computer-prestages/{id}Update a Computer Prestage
ComputerPrestagesApiV2ComputerPrestagesIdScopeDeleteMultiplePostPost /v2/computer-prestages/{id}/scope/delete-multipleRemove device Scope for a specific Computer Prestage
ComputerPrestagesApiV2ComputerPrestagesIdScopeGetGet /v2/computer-prestages/{id}/scopeGet device Scope for a specific Computer Prestage
ComputerPrestagesApiV2ComputerPrestagesIdScopePostPost /v2/computer-prestages/{id}/scopeAdd device Scope for a specific Computer Prestage
ComputerPrestagesApiV2ComputerPrestagesIdScopePutPut /v2/computer-prestages/{id}/scopeReplace device Scope for a specific Computer Prestage
ComputerPrestagesApiV2ComputerPrestagesPostPost /v2/computer-prestagesCreate a Computer Prestage
ComputerPrestagesApiV2ComputerPrestagesScopeGetGet /v2/computer-prestages/scopeGet all device Scope for all Computer Prestages
ComputersPreviewApiPreviewComputersGetGet /preview/computersReturn a list of Computers
ConditionalAccessApiV1ConditionalAccessDeviceComplianceInformationComputerDeviceIdGetGet /v1/conditional-access/device-compliance-information/computer/{deviceId}Get compliance information for a single computer device
ConditionalAccessApiV1ConditionalAccessDeviceComplianceInformationMobileDeviceIdGetGet /v1/conditional-access/device-compliance-information/mobile/{deviceId}Get compliance information for a single mobile device
CsaApiV1CsaTokenDeleteDelete /v1/csa/tokenDelete the CSA token exchange - This will disable Jamf Pro's ability to authenticate with cloud-hosted services
CsaApiV1CsaTokenGetGet /v1/csa/tokenGet details regarding the CSA token exchange
CsaApiV1CsaTokenPostPost /v1/csa/tokenInitialize the CSA token exchange
CsaApiV1CsaTokenPutPut /v1/csa/tokenRe-initialize the CSA token exchange with new credentials
DepartmentsApiV1DepartmentsDeleteMultiplePostPost /v1/departments/delete-multipleDeletes all departments by ids passed in body
DepartmentsApiV1DepartmentsGetGet /v1/departmentsSearch for Departments
DepartmentsApiV1DepartmentsIdDeleteDelete /v1/departments/{id}Remove specified department record
DepartmentsApiV1DepartmentsIdGetGet /v1/departments/{id}Get specified Department object
DepartmentsApiV1DepartmentsIdHistoryGetGet /v1/departments/{id}/historyGet specified Department history object
DepartmentsApiV1DepartmentsIdHistoryPostPost /v1/departments/{id}/historyAdd specified Department history object notes
DepartmentsApiV1DepartmentsIdPutPut /v1/departments/{id}Update specified department object
DepartmentsApiV1DepartmentsPostPost /v1/departmentsCreate department record
DeviceCommunicationSettingsApiV1DeviceCommunicationSettingsGetGet /v1/device-communication-settingsRetrieves all settings for device communication
DeviceCommunicationSettingsApiV1DeviceCommunicationSettingsHistoryGetGet /v1/device-communication-settings/historyGet Device Communication settings history
DeviceCommunicationSettingsApiV1DeviceCommunicationSettingsHistoryPostPost /v1/device-communication-settings/historyAdd Device Communication Settings history notes
DeviceCommunicationSettingsApiV1DeviceCommunicationSettingsPutPut /v1/device-communication-settingsUpdate device communication settings
DeviceEnrollmentsApiV1DeviceEnrollmentsGetGet /v1/device-enrollmentsRead all sorted and paged Device Enrollment instances
DeviceEnrollmentsApiV1DeviceEnrollmentsIdDeleteDelete /v1/device-enrollments/{id}Delete a Device Enrollment Instance with the supplied id
DeviceEnrollmentsApiV1DeviceEnrollmentsIdDisownPostPost /v1/device-enrollments/{id}/disownDisown devices from the given Device Enrollment Instance
DeviceEnrollmentsApiV1DeviceEnrollmentsIdGetGet /v1/device-enrollments/{id}Retrieve a Device Enrollment Instance with the supplied id
DeviceEnrollmentsApiV1DeviceEnrollmentsIdHistoryGetGet /v1/device-enrollments/{id}/historyGet sorted and paged Device Enrollment history objects
DeviceEnrollmentsApiV1DeviceEnrollmentsIdHistoryPostPost /v1/device-enrollments/{id}/historyAdd Device Enrollment history object notes
DeviceEnrollmentsApiV1DeviceEnrollmentsIdPutPut /v1/device-enrollments/{id}Update a Device Enrollment Instance with the supplied id
DeviceEnrollmentsApiV1DeviceEnrollmentsIdSyncsGetGet /v1/device-enrollments/{id}/syncsGet all instance sync states for a single Device Enrollment Instance
DeviceEnrollmentsApiV1DeviceEnrollmentsIdSyncsLatestGetGet /v1/device-enrollments/{id}/syncs/latestGet the latest sync state for a single Device Enrollment Instance
DeviceEnrollmentsApiV1DeviceEnrollmentsIdUploadTokenPutPut /v1/device-enrollments/{id}/upload-tokenUpdate a Device Enrollment Instance with the supplied Token
DeviceEnrollmentsApiV1DeviceEnrollmentsPublicKeyGetGet /v1/device-enrollments/public-keyRetrieve the Jamf Pro Device Enrollment public key
DeviceEnrollmentsApiV1DeviceEnrollmentsSyncsGetGet /v1/device-enrollments/syncsGet all instance sync states for all Device Enrollment Instances
DeviceEnrollmentsApiV1DeviceEnrollmentsUploadTokenPostPost /v1/device-enrollments/upload-tokenCreate a Device Enrollment Instance with the supplied Token
DeviceEnrollmentsDevicesApiV1DeviceEnrollmentsIdDevicesGetGet /v1/device-enrollments/{id}/devicesRetrieve a list of Devices assigned to the supplied id
EbooksApiV1EbooksGetGet /v1/ebooksGet Ebook object
EbooksApiV1EbooksIdGetGet /v1/ebooks/{id}Get specified Ebook object
EbooksApiV1EbooksIdScopeGetGet /v1/ebooks/{id}/scopeGet specified scope of Ebook object
EngageApiV1EngageGetGet /v1/engageGet Engage settings
EngageApiV1EngageHistoryGetGet /v1/engage/historyGet Engage settings history
EngageApiV1EngageHistoryPostPost /v1/engage/historyAdd Engage settings history notes
EngageApiV1EngagePutPut /v1/engageUpdate Engage settings
EnrollmentApiPreviewEnrollmentAccessGroupsGetGet /preview/enrollment/access-groupsRetrieve the configured LDAP groups configured for User-Initiated Enrollment.
EnrollmentApiPreviewEnrollmentAccessGroupsIdDeleteDelete /preview/enrollment/access-groups/{id}Delete an LDAP group's access to user initiated Enrollment.
EnrollmentApiPreviewEnrollmentAccessGroupsIdGetGet /preview/enrollment/access-groups/{id}Retrieve the configured LDAP groups configured for User-Initiated Enrollment
EnrollmentApiPreviewEnrollmentAccessGroupsIdPutPut /preview/enrollment/access-groups/{id}Modify the configured LDAP groups configured for User-Initiated Enrollment. Only exiting Access Groups can be updated.
EnrollmentApiPreviewEnrollmentAccessGroupsPostPost /preview/enrollment/access-groupsAdd the configured LDAP group for User-Initiated Enrollment.
EnrollmentApiV1EnrollmentAccessGroupsGetGet /v1/enrollment/access-groupsRetrieve the configured LDAP groups configured for User-Initiated Enrollment
EnrollmentApiV1EnrollmentAccessGroupsGroupKeyDeleteDelete /v1/enrollment/access-groups/{group-key}Delete an LDAP group's access to user initiated Enrollment
EnrollmentApiV1EnrollmentAccessGroupsGroupKeyGetGet /v1/enrollment/access-groups/{group-key}Retrieve the configured LDAP groups configured for User-Initiated Enrollment
EnrollmentApiV1EnrollmentAccessGroupsGroupKeyPutPut /v1/enrollment/access-groups/{group-key}Modify the configured LDAP groups configured for User-Initiated Enrollment
EnrollmentApiV1EnrollmentFilteredLanguageCodesGetGet /v1/enrollment/filtered-language-codesRetrieve the list of languages and corresponding ISO 639-1 Codes but only those not already added to Enrollment
EnrollmentApiV1EnrollmentGetGet /v1/enrollmentGet Enrollment object and Re-enrollment settings
EnrollmentApiV1EnrollmentHistoryGetGet /v1/enrollment/historyGet sorted and paged Enrollment history object
EnrollmentApiV1EnrollmentHistoryPostPost /v1/enrollment/historyAdd Enrollment history object notes
EnrollmentApiV1EnrollmentLanguageCodesGetGet /v1/enrollment/language-codesRetrieve the list of languages and corresponding ISO 639-1 Codes
EnrollmentApiV1EnrollmentLanguagesGetGet /v1/enrollment/languagesGet an array of the language codes that have Enrollment messaging
EnrollmentApiV1EnrollmentLanguagesLanguageDeleteDelete /v1/enrollment/languages/{language}Delete the Enrollment messaging for a language
EnrollmentApiV1EnrollmentLanguagesLanguageGetGet /v1/enrollment/languages/{language}Retrieve the Enrollment messaging for a language
EnrollmentApiV1EnrollmentLanguagesLanguagePutPut /v1/enrollment/languages/{language}Edit Enrollment messaging for a language
EnrollmentApiV1EnrollmentPutPut /v1/enrollmentUpdate Enrollment object
EnrollmentApiV2EnrollmentAccessGroupsGetGet /v2/enrollment/access-groupsRetrieve the configured LDAP groups configured for User-Initiated Enrollment
EnrollmentApiV2EnrollmentAccessGroupsPostPost /v2/enrollment/access-groupsAdd the configured LDAP group for User-Initiated Enrollment.
EnrollmentApiV2EnrollmentAccessGroupsServerIdGroupIdDeleteDelete /v2/enrollment/access-groups/{serverId}/{groupId}Delete an LDAP group's access to user initiated Enrollment
EnrollmentApiV2EnrollmentAccessGroupsServerIdGroupIdGetGet /v2/enrollment/access-groups/{serverId}/{groupId}Retrieve the configured LDAP groups configured for User-Initiated Enrollment
EnrollmentApiV2EnrollmentAccessGroupsServerIdGroupIdPutPut /v2/enrollment/access-groups/{serverId}/{groupId}Modify the configured LDAP groups configured for User-Initiated Enrollment
EnrollmentApiV2EnrollmentFilteredLanguageCodesGetGet /v2/enrollment/filtered-language-codesRetrieve the list of languages and corresponding ISO 639-1 Codes but only those not already added to Enrollment
EnrollmentApiV2EnrollmentGetGet /v2/enrollmentGet Enrollment object and Re-enrollment settings
EnrollmentApiV2EnrollmentHistoryExportPostPost /v2/enrollment/history/exportExport enrollment history collection
EnrollmentApiV2EnrollmentHistoryGetGet /v2/enrollment/historyGet sorted and paged Enrollment history object
EnrollmentApiV2EnrollmentHistoryPostPost /v2/enrollment/historyAdd Enrollment history object notes
EnrollmentApiV2EnrollmentLanguageCodesGetGet /v2/enrollment/language-codesRetrieve the list of languages and corresponding ISO 639-1 Codes
EnrollmentApiV2EnrollmentLanguagesGetGet /v2/enrollment/languagesGet an array of the language codes that have Enrollment messaging
EnrollmentApiV2EnrollmentLanguagesLanguageIdDeleteDelete /v2/enrollment/languages/{languageId}Delete the Enrollment messaging for a language
EnrollmentApiV2EnrollmentLanguagesLanguageIdGetGet /v2/enrollment/languages/{languageId}Retrieve the Enrollment messaging for a language
EnrollmentApiV2EnrollmentLanguagesLanguageIdPutPut /v2/enrollment/languages/{languageId}Edit Enrollment messaging for a language
EnrollmentApiV2EnrollmentPutPut /v2/enrollmentUpdate Enrollment object
EnrollmentCustomizationApiV1EnrollmentCustomizationGetGet /v1/enrollment-customizationRetrieve sorted and paged Enrollment Customizations
EnrollmentCustomizationApiV1EnrollmentCustomizationIdDeleteDelete /v1/enrollment-customization/{id}Delete an Enrollment Customization with the supplied id
EnrollmentCustomizationApiV1EnrollmentCustomizationIdGetGet /v1/enrollment-customization/{id}Retrieve an Enrollment Customization with the supplied id
EnrollmentCustomizationApiV1EnrollmentCustomizationIdHistoryGetGet /v1/enrollment-customization/{id}/historyGet sorted and paged Enrollment Customization history objects
EnrollmentCustomizationApiV1EnrollmentCustomizationIdHistoryPostPost /v1/enrollment-customization/{id}/historyAdd Enrollment Customization history object notes
EnrollmentCustomizationApiV1EnrollmentCustomizationIdPrestagesGetGet /v1/enrollment-customization/{id}/prestagesRetrieve the list of Prestages using this Enrollment Customization
EnrollmentCustomizationApiV1EnrollmentCustomizationIdPutPut /v1/enrollment-customization/{id}Update an Enrollment Customization
EnrollmentCustomizationApiV1EnrollmentCustomizationImagesPostPost /v1/enrollment-customization/imagesUpload an image
EnrollmentCustomizationApiV1EnrollmentCustomizationPostPost /v1/enrollment-customizationCreate an Enrollment Customization
EnrollmentCustomizationApiV2EnrollmentCustomizationsGetGet /v2/enrollment-customizationsRetrieve sorted and paged Enrollment Customizations
EnrollmentCustomizationApiV2EnrollmentCustomizationsIdDeleteDelete /v2/enrollment-customizations/{id}Delete an Enrollment Customization with the supplied id
EnrollmentCustomizationApiV2EnrollmentCustomizationsIdGetGet /v2/enrollment-customizations/{id}Retrieve an Enrollment Customization with the supplied id
EnrollmentCustomizationApiV2EnrollmentCustomizationsIdHistoryGetGet /v2/enrollment-customizations/{id}/historyGet sorted and paged Enrollment Customization history objects
EnrollmentCustomizationApiV2EnrollmentCustomizationsIdHistoryPostPost /v2/enrollment-customizations/{id}/historyAdd Enrollment Customization history object notes
EnrollmentCustomizationApiV2EnrollmentCustomizationsIdPrestagesGetGet /v2/enrollment-customizations/{id}/prestagesRetrieve the list of Prestages using this Enrollment Customization
EnrollmentCustomizationApiV2EnrollmentCustomizationsIdPutPut /v2/enrollment-customizations/{id}Update an Enrollment Customization
EnrollmentCustomizationApiV2EnrollmentCustomizationsImagesPostPost /v2/enrollment-customizations/imagesUpload an image
EnrollmentCustomizationApiV2EnrollmentCustomizationsPostPost /v2/enrollment-customizationsCreate an Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdAllGetGet /v1/enrollment-customization/{id}/allGet all Panels for single Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdAllPanelIdDeleteDelete /v1/enrollment-customization/{id}/all/{panel-id}Delete a single Panel from an Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdAllPanelIdGetGet /v1/enrollment-customization/{id}/all/{panel-id}Get a single Panel for a single Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdLdapPanelIdDeleteDelete /v1/enrollment-customization/{id}/ldap/{panel-id}Delete an LDAP single panel from an Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdLdapPanelIdGetGet /v1/enrollment-customization/{id}/ldap/{panel-id}Get a single LDAP panel for a single Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdLdapPanelIdPutPut /v1/enrollment-customization/{id}/ldap/{panel-id}Update a single LDAP Panel for a single Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdLdapPostPost /v1/enrollment-customization/{id}/ldapCreate an LDAP Panel for a single Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdSsoPanelIdDeleteDelete /v1/enrollment-customization/{id}/sso/{panel-id}Delete a single SSO Panel from an Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdSsoPanelIdGetGet /v1/enrollment-customization/{id}/sso/{panel-id}Get a single SSO Panel for a single Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdSsoPanelIdPutPut /v1/enrollment-customization/{id}/sso/{panel-id}Update a single SSO Panel for a single Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdSsoPostPost /v1/enrollment-customization/{id}/ssoCreate an SSO Panel for a single Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdTextPanelIdDeleteDelete /v1/enrollment-customization/{id}/text/{panel-id}Delete a Text single Panel from an Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdTextPanelIdGetGet /v1/enrollment-customization/{id}/text/{panel-id}Get a single Text Panel for a single Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdTextPanelIdMarkdownGetGet /v1/enrollment-customization/{id}/text/{panel-id}/markdownGet the markdown output of a single Text Panel for a single Enrollment
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdTextPanelIdPutPut /v1/enrollment-customization/{id}/text/{panel-id}Update a single Text Panel for a single Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationIdTextPostPost /v1/enrollment-customization/{id}/textCreate a Text Panel for a single Enrollment Customization
EnrollmentCustomizationPreviewApiV1EnrollmentCustomizationParseMarkdownPostPost /v1/enrollment-customization/parse-markdownParse the given string as markdown text and return Html output
IconApiV1IconIdGetGet /v1/icon/{id}Get an icon
IconApiV1IconPostPost /v1/iconUpload an icon
InventoryInformationApiV1InventoryInformationGetGet /v1/inventory-informationGet statistics about managed/unmanaged devices and computers in the inventory
InventoryPreloadApiInventoryPreloadCsvTemplateGetGet /inventory-preload/csv-templateGet the Inventory Preload CSV template
InventoryPreloadApiInventoryPreloadDeleteDelete /inventory-preloadDelete all Inventory Preload records
InventoryPreloadApiInventoryPreloadGetGet /inventory-preloadReturn all Inventory Preload records
InventoryPreloadApiInventoryPreloadHistoryGetGet /inventory-preload/historyGet Inventory Preload history entries
InventoryPreloadApiInventoryPreloadHistoryNotesPostPost /inventory-preload/history/notesAdd Inventory Preload history object notes
InventoryPreloadApiInventoryPreloadIdDeleteDelete /inventory-preload/{id}Delete an Inventory Preload record
InventoryPreloadApiInventoryPreloadIdGetGet /inventory-preload/{id}Get an Inventory Preload record
InventoryPreloadApiInventoryPreloadIdPutPut /inventory-preload/{id}Update an Inventory Preload record
InventoryPreloadApiInventoryPreloadPostPost /inventory-preloadCreate a new Inventory Preload record using JSON or CSV
InventoryPreloadApiInventoryPreloadValidateCsvPostPost /inventory-preload/validate-csvValidate a given CSV file
InventoryPreloadApiV1InventoryPreloadCsvTemplateGetGet /v1/inventory-preload/csv-templateRetrieve the Inventory Preload CSV template
InventoryPreloadApiV1InventoryPreloadDeleteDelete /v1/inventory-preloadDelete all Inventory Preload records
InventoryPreloadApiV1InventoryPreloadGetGet /v1/inventory-preloadReturn all Inventory Preload records
InventoryPreloadApiV1InventoryPreloadHistoryGetGet /v1/inventory-preload/historyGet Inventory Preload history entries
InventoryPreloadApiV1InventoryPreloadHistoryPostPost /v1/inventory-preload/historyAdd Inventory Preload history object notes
InventoryPreloadApiV1InventoryPreloadIdDeleteDelete /v1/inventory-preload/{id}Delete an Inventory Preload record
InventoryPreloadApiV1InventoryPreloadIdGetGet /v1/inventory-preload/{id}Get an Inventory Preload record
InventoryPreloadApiV1InventoryPreloadIdPutPut /v1/inventory-preload/{id}Update an Inventory Preload record
InventoryPreloadApiV1InventoryPreloadPostPost /v1/inventory-preloadCreate a new Inventory Preload record using JSON or CSV
InventoryPreloadApiV1InventoryPreloadValidateCsvPostPost /v1/inventory-preload/validate-csvValidate a given CSV file
InventoryPreloadApiV2InventoryPreloadCsvGetGet /v2/inventory-preload/csvDownload all Inventory Preload records
InventoryPreloadApiV2InventoryPreloadCsvPostPost /v2/inventory-preload/csvCreate one or more new Inventory Preload records using CSV
InventoryPreloadApiV2InventoryPreloadCsvTemplateGetGet /v2/inventory-preload/csv-templateDownload the Inventory Preload CSV template
InventoryPreloadApiV2InventoryPreloadCsvValidatePostPost /v2/inventory-preload/csv-validateValidate a given CSV file
InventoryPreloadApiV2InventoryPreloadEaColumnsGetGet /v2/inventory-preload/ea-columnsRetrieve a list of extension attribute columns
InventoryPreloadApiV2InventoryPreloadExportPostPost /v2/inventory-preload/exportExport a collection of inventory preload records
InventoryPreloadApiV2InventoryPreloadHistoryGetGet /v2/inventory-preload/historyGet Inventory Preload history entries
InventoryPreloadApiV2InventoryPreloadHistoryPostPost /v2/inventory-preload/historyAdd Inventory Preload history object notes
InventoryPreloadApiV2InventoryPreloadRecordsDeleteAllPostPost /v2/inventory-preload/records/delete-allDelete all Inventory Preload records
InventoryPreloadApiV2InventoryPreloadRecordsGetGet /v2/inventory-preload/recordsReturn all Inventory Preload records
InventoryPreloadApiV2InventoryPreloadRecordsIdDeleteDelete /v2/inventory-preload/records/{id}Delete an Inventory Preload record
InventoryPreloadApiV2InventoryPreloadRecordsIdGetGet /v2/inventory-preload/records/{id}Get an Inventory Preload record
InventoryPreloadApiV2InventoryPreloadRecordsIdPutPut /v2/inventory-preload/records/{id}Update an Inventory Preload record
InventoryPreloadApiV2InventoryPreloadRecordsPostPost /v2/inventory-preload/recordsCreate a new Inventory Preload record using JSON
JamfConnectApiV1JamfConnectConfigProfilesGetGet /v1/jamf-connect/config-profilesSearch for config profiles linked to Jamf Connect
JamfConnectApiV1JamfConnectConfigProfilesIdPutPut /v1/jamf-connect/config-profiles/{id}Update the way the Jamf Connect app gets updated on computers within scope of the associated configuration profile.
JamfConnectApiV1JamfConnectDeploymentsIdTasksGetGet /v1/jamf-connect/deployments/{id}/tasksSearch for deployment tasks for a config profile linked to Jamf Connect
JamfConnectApiV1JamfConnectDeploymentsIdTasksRetryPostPost /v1/jamf-connect/deployments/{id}/tasks/retryRequest a retry of Connect install tasks
JamfConnectApiV1JamfConnectGetGet /v1/jamf-connectGet the Jamf Connect settings that you have access to see
JamfConnectApiV1JamfConnectHistoryGetGet /v1/jamf-connect/historyGet Jamf Connect history
JamfConnectApiV1JamfConnectHistoryPostPost /v1/jamf-connect/historyAdd Jamf Connect history notes
JamfManagementFrameworkApiV1JamfManagementFrameworkRedeployIdPostPost /v1/jamf-management-framework/redeploy/{id}Redeploy Jamf Management Framework
JamfPackageApiV1JamfPackageGetGet /v1/jamf-packageGet the packages for a given Jamf application
JamfPackageApiV2JamfPackageGetGet /v2/jamf-packageGet the packages for a given Jamf application
JamfProInformationPreviewApiV1JamfProInformationGetGet /v1/jamf-pro-informationGet basic information about the Jamf Pro Server
JamfProInitializationApiV1SystemInitializeDatabaseConnectionPostPost /v1/system/initialize-database-connectionProvide Database Password during startup
JamfProInitializationApiV1SystemInitializePostPost /v1/system/initializeSet up fresh installed Jamf Pro Server
JamfProInitializationPreviewApiSystemInitializeDatabaseConnectionPostPost /system/initialize-database-connectionProvide Database Password during startup
JamfProInitializationPreviewApiSystemInitializePostPost /system/initializeSet up fresh installed Jamf Pro Server
JamfProNotificationsApiV1NotificationsGetGet /v1/notificationsGet Notifications for user and site
JamfProNotificationsApiV1NotificationsTypeIdDeleteDelete /v1/notifications/{type}/{id}Delete Notifications
JamfProNotificationsPreviewApiNotificationsAlertsGetGet /notifications/alertsGet Notifications for user and site
JamfProNotificationsPreviewApiNotificationsAlertsIdDeleteDelete /notifications/alerts/{id}DEPRECATED - USE "alerts/{type}/{id}" INSTEAD. Deletes only Patch Management notifications.
JamfProNotificationsPreviewApiNotificationsAlertsTypeIdDeleteDelete /notifications/alerts/{type}/{id}Delete Notifications
JamfProServerUrlPreviewApiV1JamfProServerUrlGetGet /v1/jamf-pro-server-urlGet Jamf Pro Server URL settings
JamfProServerUrlPreviewApiV1JamfProServerUrlHistoryGetGet /v1/jamf-pro-server-url/historyGet Jamf Pro Server URL settings history
JamfProServerUrlPreviewApiV1JamfProServerUrlHistoryPostPost /v1/jamf-pro-server-url/historyAdd Jamf Pro Server URL settings history notes
JamfProServerUrlPreviewApiV1JamfProServerUrlPutPut /v1/jamf-pro-server-urlUpdate Jamf Pro Server URL settings
JamfProUserAccountSettingsApiV1UserPreferencesKeyIdDeleteDelete /v1/user/preferences/{keyId}Remove specified setting for authenticated user
JamfProUserAccountSettingsApiV1UserPreferencesKeyIdGetGet /v1/user/preferences/{keyId}Get the user setting for the authenticated user and key
JamfProUserAccountSettingsApiV1UserPreferencesKeyIdPutPut /v1/user/preferences/{keyId}Persist the user setting
JamfProUserAccountSettingsPreviewApiUserObjPreferenceKeyDeleteDelete /user/obj/preference/{key}Remove specified setting for authenticated user
JamfProUserAccountSettingsPreviewApiUserObjPreferenceKeyGetGet /user/obj/preference/{key}Get the user setting for the authenticated user and key
JamfProUserAccountSettingsPreviewApiUserObjPreferenceKeyPutPut /user/obj/preference/{key}Persist the user setting
JamfProVersionApiV1JamfProVersionGetGet /v1/jamf-pro-versionReturn information about the Jamf Pro including the current version
JamfProtectApiV1JamfProtectDeleteDelete /v1/jamf-protectDelete Jamf Protect API registration.
JamfProtectApiV1JamfProtectDeploymentsIdTasksGetGet /v1/jamf-protect/deployments/{id}/tasksSearch for deployment tasks for a config profile linked to Jamf Protect
JamfProtectApiV1JamfProtectDeploymentsIdTasksRetryPostPost /v1/jamf-protect/deployments/{id}/tasks/retryRequest a retry of Protect install tasks
JamfProtectApiV1JamfProtectGetGet /v1/jamf-protectJamf Protect integration settings
JamfProtectApiV1JamfProtectHistoryGetGet /v1/jamf-protect/historyGet Jamf Protect history
JamfProtectApiV1JamfProtectHistoryPostPost /v1/jamf-protect/historyAdd Jamf Protect history notes
JamfProtectApiV1JamfProtectPlansGetGet /v1/jamf-protect/plansGet all of the previously synced Jamf Protect Plans with information about their associated configuration profile
JamfProtectApiV1JamfProtectPlansSyncPostPost /v1/jamf-protect/plans/syncSync Plans with Jamf Protect
JamfProtectApiV1JamfProtectPutPut /v1/jamf-protectJamf Protect integration settings
JamfProtectApiV1JamfProtectRegisterPostPost /v1/jamf-protect/registerRegister a Jamf Protect API configuration with Jamf Pro
LdapApiLdapGroupsGetGet /ldap/groupsRetrieve the configured access groups that contain the text in the search param
LdapApiLdapServersGetGet /ldap/serversRetrieve all Servers including LDAP and Cloud Identity Providers.
LdapApiV1LdapGroupsGetGet /v1/ldap/groupsRetrieve the configured access groups that contain the text in the search param
LdapApiV1LdapLdapServersGetGet /v1/ldap/ldap-serversRetrieve all LDAP Servers.
LdapApiV1LdapServersGetGet /v1/ldap/serversRetrieve all Servers including LDAP and Cloud Identity Providers.
LocalesPreviewApiV1LocalesGetGet /v1/localesReturn locales that can be used in other features
MacosManagedSoftwareUpdatesApiV1MacosManagedSoftwareUpdatesAvailableUpdatesGetGet /v1/macos-managed-software-updates/available-updatesRetrieve available MacOs Managed Software Updates
MacosManagedSoftwareUpdatesApiV1MacosManagedSoftwareUpdatesSendUpdatesPostPost /v1/macos-managed-software-updates/send-updatesSend MacOs Managed Software Updates
MdmApiPreviewMdmCommandsPostPost /preview/mdm/commandsPost a command for creation and queuing
MdmApiV1DeployPackagePostPost /v1/deploy-packageDeploy packages using MDM
MdmApiV1MdmCommandsGetGet /v1/mdm/commandsGet information about mdm commands made by Jamf Pro.
MdmApiV1MdmRenewProfilePostPost /v1/mdm/renew-profileRenew MDM Profile
MobileDeviceEnrollmentProfileApiV1MobileDeviceEnrollmentProfileIdDownloadProfileGetGet /v1/mobile-device-enrollment-profile/{id}/download-profileRetrieve the MDM Enrollment Profile
MobileDeviceExtensionAttributesPreviewApiDevicesExtensionAttributesGetGet /devices/extensionAttributesGet Mobile Device Extension Attribute values placed in select paramter
MobileDeviceGroupsPreviewApiV1MobileDeviceGroupsGetGet /v1/mobile-device-groupsReturn the list of all Mobile Device Groups
MobileDevicePrestagesApiV1MobileDevicePrestagesGetGet /v1/mobile-device-prestagesSearch for sorted and paged Mobile Device Prestages
MobileDevicePrestagesApiV1MobileDevicePrestagesIdAttachmentsDeleteDelete /v1/mobile-device-prestages/{id}/attachmentsRemove an attachment for a Mobile Device Prestage
MobileDevicePrestagesApiV1MobileDevicePrestagesIdAttachmentsGetGet /v1/mobile-device-prestages/{id}/attachmentsGet attachments for a Mobile Device Prestage
MobileDevicePrestagesApiV1MobileDevicePrestagesIdAttachmentsPostPost /v1/mobile-device-prestages/{id}/attachmentsAdd an attachment to a Mobile Device Prestage
MobileDevicePrestagesApiV1MobileDevicePrestagesIdDeleteDelete /v1/mobile-device-prestages/{id}Delete a Mobile Device Prestage with the supplied id
MobileDevicePrestagesApiV1MobileDevicePrestagesIdGetGet /v1/mobile-device-prestages/{id}Retrieve a Mobile Device Prestage with the supplied id
MobileDevicePrestagesApiV1MobileDevicePrestagesIdHistoryGetGet /v1/mobile-device-prestages/{id}/historyGet sorted and paged Mobile Device Prestage history objects
MobileDevicePrestagesApiV1MobileDevicePrestagesIdHistoryPostPost /v1/mobile-device-prestages/{id}/historyAdd Mobile Device Prestage history object notes
MobileDevicePrestagesApiV1MobileDevicePrestagesIdPutPut /v1/mobile-device-prestages/{id}Update a Mobile Device Prestage
MobileDevicePrestagesApiV1MobileDevicePrestagesIdScopeDeleteDelete /v1/mobile-device-prestages/{id}/scopeRemove Device Scope for a specific Mobile Device Prestage
MobileDevicePrestagesApiV1MobileDevicePrestagesIdScopeGetGet /v1/mobile-device-prestages/{id}/scopeGet Device Scope for a specific Mobile Device Prestage
MobileDevicePrestagesApiV1MobileDevicePrestagesIdScopePostPost /v1/mobile-device-prestages/{id}/scopeAdd Device Scope for a specific Mobile Device Prestage
MobileDevicePrestagesApiV1MobileDevicePrestagesIdScopePutPut /v1/mobile-device-prestages/{id}/scopeReplace Device Scope for a specific Mobile Device Prestage
MobileDevicePrestagesApiV1MobileDevicePrestagesPostPost /v1/mobile-device-prestagesCreate a Mobile Device Prestage
MobileDevicePrestagesApiV1MobileDevicePrestagesScopeGetGet /v1/mobile-device-prestages/scopeGet all Device Scope for all Mobile Device Prestages
MobileDevicePrestagesApiV1MobileDevicePrestagesSyncGetGet /v1/mobile-device-prestages/syncGet all Prestage sync States for all prestages
MobileDevicePrestagesApiV1MobileDevicePrestagesSyncIdGetGet /v1/mobile-device-prestages/sync/{id}Get all prestage sync states for a single prestage
MobileDevicePrestagesApiV1MobileDevicePrestagesSyncIdLatestGetGet /v1/mobile-device-prestages/sync/{id}/latestGet the latest Sync State for a single Prestage
MobileDevicePrestagesApiV2MobileDevicePrestagesGetGet /v2/mobile-device-prestagesGet sorted and paged Mobile Device Prestages
MobileDevicePrestagesApiV2MobileDevicePrestagesIdAttachmentsDeleteMultiplePostPost /v2/mobile-device-prestages/{id}/attachments/delete-multipleRemove an attachment for a Mobile Device Prestage
MobileDevicePrestagesApiV2MobileDevicePrestagesIdAttachmentsGetGet /v2/mobile-device-prestages/{id}/attachmentsGet attachments for a Mobile Device Prestage
MobileDevicePrestagesApiV2MobileDevicePrestagesIdAttachmentsPostPost /v2/mobile-device-prestages/{id}/attachmentsAdd an attachment to a Mobile Device Prestage
MobileDevicePrestagesApiV2MobileDevicePrestagesIdDeleteDelete /v2/mobile-device-prestages/{id}Delete a Mobile Device Prestage with the supplied id
MobileDevicePrestagesApiV2MobileDevicePrestagesIdGetGet /v2/mobile-device-prestages/{id}Retrieve a Mobile Device Prestage with the supplied id
MobileDevicePrestagesApiV2MobileDevicePrestagesIdHistoryGetGet /v2/mobile-device-prestages/{id}/historyGet sorted and paged Mobile Device Prestage history objects
MobileDevicePrestagesApiV2MobileDevicePrestagesIdHistoryPostPost /v2/mobile-device-prestages/{id}/historyAdd Mobile Device Prestage history object notes
MobileDevicePrestagesApiV2MobileDevicePrestagesIdPutPut /v2/mobile-device-prestages/{id}Update a Mobile Device Prestage
MobileDevicePrestagesApiV2MobileDevicePrestagesIdScopeDeleteMultiplePostPost /v2/mobile-device-prestages/{id}/scope/delete-multipleRemove Device Scope for a specific Mobile Device Prestage
MobileDevicePrestagesApiV2MobileDevicePrestagesIdScopeGetGet /v2/mobile-device-prestages/{id}/scopeGet Device Scope for a specific Mobile Device Prestage
MobileDevicePrestagesApiV2MobileDevicePrestagesIdScopePostPost /v2/mobile-device-prestages/{id}/scopeAdd Device Scope for a specific Mobile Device Prestage
MobileDevicePrestagesApiV2MobileDevicePrestagesIdScopePutPut /v2/mobile-device-prestages/{id}/scopeReplace Device Scope for a specific Mobile Device Prestage
MobileDevicePrestagesApiV2MobileDevicePrestagesIdSyncsGetGet /v2/mobile-device-prestages/{id}/syncsGet all prestage sync states for a single prestage
MobileDevicePrestagesApiV2MobileDevicePrestagesIdSyncsLatestGetGet /v2/mobile-device-prestages/{id}/syncs/latestGet the latest Sync State for a single Prestage
MobileDevicePrestagesApiV2MobileDevicePrestagesPostPost /v2/mobile-device-prestagesCreate a Mobile Device Prestage
MobileDevicePrestagesApiV2MobileDevicePrestagesScopeGetGet /v2/mobile-device-prestages/scopeGet all Device Scope for all Mobile Device Prestages
MobileDevicePrestagesApiV2MobileDevicePrestagesSyncsGetGet /v2/mobile-device-prestages/syncsGet all Prestage sync States for all prestages
MobileDevicesApiV1MobileDevicesGetGet /v1/mobile-devicesGet Mobile Device objects
MobileDevicesApiV1MobileDevicesIdDetailGetGet /v1/mobile-devices/{id}/detailGet Mobile Device
MobileDevicesApiV1MobileDevicesIdGetGet /v1/mobile-devices/{id}Get Mobile Device
MobileDevicesApiV1MobileDevicesIdPatchPatch /v1/mobile-devices/{id}Update fields on a mobile device that are allowed to be modified by users
MobileDevicesApiV1SearchMobileDevicesPostPost /v1/search-mobile-devicesSearch Mobile Devices
MobileDevicesApiV2MobileDevicesGetGet /v2/mobile-devicesGet Mobile Device objects
MobileDevicesApiV2MobileDevicesIdDetailGetGet /v2/mobile-devices/{id}/detailGet Mobile Device
MobileDevicesApiV2MobileDevicesIdGetGet /v2/mobile-devices/{id}Get Mobile Device
MobileDevicesApiV2MobileDevicesIdPatchPatch /v2/mobile-devices/{id}Update fields on a mobile device that are allowed to be modified by users
ParentAppPreviewApiV1ParentAppGetGet /v1/parent-appGet the current Jamf Parent app settings
ParentAppPreviewApiV1ParentAppHistoryGetGet /v1/parent-app/historyGet Jamf Parent app settings history
ParentAppPreviewApiV1ParentAppHistoryPostPost /v1/parent-app/historyAdd Jamf Parent app settings history notes
ParentAppPreviewApiV1ParentAppPutPut /v1/parent-appUpdate Jamf Parent app settings
PatchPoliciesPreviewApiPatchPatchPoliciesGetGet /patch/patch-policiesReturn a list of patch policies
PatchPoliciesPreviewApiPatchPatchPoliciesIdDashboardDeleteDelete /patch/patch-policies/{id}/dashboardRemove a patch policy from the dashboard
PatchPoliciesPreviewApiPatchPatchPoliciesIdDashboardGetGet /patch/patch-policies/{id}/dashboardReturn whether or not the requested patch policy is on the dashboard
PatchPoliciesPreviewApiPatchPatchPoliciesIdDashboardPostPost /patch/patch-policies/{id}/dashboardAdd a patch policy to the dashboard
PatchPolicyLogsPreviewApiPatchPatchPoliciesIdLogsGetGet /patch/patch-policies/{id}/logsReturn the Patch Policy Attempt details
PatchesApiPatchIdGetGet /patch/{id}Return Active Patch Summary
PatchesApiPatchIdPutPut /patch/{id}Update patch report
PatchesApiPatchIdVersionsGetGet /patch/{id}/versionsReturn patch versions
PatchesApiPatchObjPolicyIdGetGet /patch/obj/policy/{id}Return Patch Policy Summary
PatchesApiPatchSvcDisclaimerAgreePostPost /patch/svc/disclaimerAgreeAccept Patch reporting disclaimer
PatchesPreviewApiPatchDisclaimerAgreePostPost /patch/disclaimerAgreeAccept Patch reporting disclaimer
PatchesPreviewApiPatchObjIdGetGet /patch/obj/{id}Return Active Patch Summary
PatchesPreviewApiPatchObjIdPutPut /patch/obj/{id}Update patch report
PatchesPreviewApiPatchObjIdVersionsGetGet /patch/obj/{id}/versionsReturn patch versions
PatchesPreviewApiPatchObjPolicyIdLogsEligibleRetryCountGetGet /patch/obj/policy/{id}/logs/eligibleRetryCountReturn the count of the Patch Policy Logs for the policy is that are eligible for a retry attempt
PatchesPreviewApiPatchObjPolicyIdSoftwareTitleConfigurationIdGetGet /patch/obj/policy/{id}/softwareTitleConfigurationIdReturn the Software Title Configuration Id for the given patch
PatchesPreviewApiPatchObjSoftwareTitleConfigurationIdGetGet /patch/obj/softwareTitleConfiguration/{id}Return the Software Title Configuration
PatchesPreviewApiPatchObjSoftwareTitleIdPoliciesGetGet /patch/obj/softwareTitle/{id}/policiesReturn the Summaries of the Patch Policies for the software title
PatchesPreviewApiPatchObjsPolicyIdGetGet /patch/objs/policy/{id}Return Patch Policy Summary
PatchesPreviewApiPatchOnDashboardGetGet /patch/onDashboardReturn list of Patch ids on dashboard
PatchesPreviewApiPatchRetryPolicyPostPost /patch/retryPolicyRetry policy
PatchesPreviewApiPatchSearchActivePatchHistoryPostPost /patch/searchActivePatchHistorySearch the history for a Specific Active Patch
PatchesPreviewApiPatchSearchPatchPolicyLogsPostPost /patch/searchPatchPolicyLogsReturn Patch Policy Logs
PatchesPreviewApiPatchSvcRetryPolicyPostPost /patch/svc/retryPolicyRetry policy
PoliciesPreviewApiSettingsObjPolicyPropertiesGetGet /settings/obj/policyPropertiesGet Policy Properties object
PoliciesPreviewApiSettingsObjPolicyPropertiesPutPut /settings/obj/policyPropertiesUpdate Policy Properties object
PoliciesPreviewApiV1PolicyPropertiesGetGet /v1/policy-propertiesGet Policy Properties object
PoliciesPreviewApiV1PolicyPropertiesPutPut /v1/policy-propertiesUpdate Policy Properties object
ReEnrollmentPreviewApiV1ReenrollmentGetGet /v1/reenrollmentGet Re-enrollment object
ReEnrollmentPreviewApiV1ReenrollmentHistoryGetGet /v1/reenrollment/historyGet Re-enrollment history object
ReEnrollmentPreviewApiV1ReenrollmentHistoryPostPost /v1/reenrollment/historyAdd specified Re-enrollment history object notes
ReEnrollmentPreviewApiV1ReenrollmentPutPut /v1/reenrollmentUpdate the Re-enrollment object
RemoteAdministrationApiPreviewRemoteAdministrationConfigurationsGetGet /preview/remote-administration-configurationsGet information about all remote administration configurations.
ScriptsApiV1ScriptsGetGet /v1/scriptsSearch for sorted and paged Scripts
ScriptsApiV1ScriptsIdDeleteDelete /v1/scripts/{id}Delete a Script at the specified id
ScriptsApiV1ScriptsIdDownloadGetGet /v1/scripts/{id}/downloadDownload a text file of the Script contents
ScriptsApiV1ScriptsIdGetGet /v1/scripts/{id}Retrieve a full script object
ScriptsApiV1ScriptsIdHistoryGetGet /v1/scripts/{id}/historyGet specified Script history object
ScriptsApiV1ScriptsIdHistoryPostPost /v1/scripts/{id}/historyAdd specified Script history object notes
ScriptsApiV1ScriptsIdPutPut /v1/scripts/{id}Replace the script at the id with the supplied information
ScriptsApiV1ScriptsPostPost /v1/scriptsCreate a Script
SelfServiceApiV1SelfServiceSettingsGetGet /v1/self-service/settingsGet an object representation of Self Service settings
SelfServiceApiV1SelfServiceSettingsPutPut /v1/self-service/settingsPut an object representation of Self Service settings
SelfServiceBrandingIosApiV1SelfServiceBrandingIosGetGet /v1/self-service/branding/iosSearch for sorted and paged iOS branding configurations
SelfServiceBrandingIosApiV1SelfServiceBrandingIosIdDeleteDelete /v1/self-service/branding/ios/{id}Delete the Self Service iOS branding configuration indicated by the provided id
SelfServiceBrandingIosApiV1SelfServiceBrandingIosIdGetGet /v1/self-service/branding/ios/{id}Read a single Self Service iOS branding configuration indicated by the provided id
SelfServiceBrandingIosApiV1SelfServiceBrandingIosIdPutPut /v1/self-service/branding/ios/{id}Update a Self Service iOS branding configuration with the supplied details
SelfServiceBrandingIosApiV1SelfServiceBrandingIosPostPost /v1/self-service/branding/iosCreate a Self Service iOS branding configuration with the supplied
SelfServiceBrandingMacosApiV1SelfServiceBrandingMacosGetGet /v1/self-service/branding/macosSearch for sorted and paged macOS branding configurations
SelfServiceBrandingMacosApiV1SelfServiceBrandingMacosIdDeleteDelete /v1/self-service/branding/macos/{id}Delete the Self Service macOS branding configuration indicated by the provided id
SelfServiceBrandingMacosApiV1SelfServiceBrandingMacosIdGetGet /v1/self-service/branding/macos/{id}Read a single Self Service macOS branding configuration indicated by the provided id
SelfServiceBrandingMacosApiV1SelfServiceBrandingMacosIdPutPut /v1/self-service/branding/macos/{id}Update a Self Service macOS branding configuration with the supplied details
SelfServiceBrandingMacosApiV1SelfServiceBrandingMacosPostPost /v1/self-service/branding/macosCreate a Self Service macOS branding configuration with the supplied
SelfServiceBrandingPreviewApiSelfServiceBrandingImagesPostPost /self-service/branding/imagesUpload an image
SitesPreviewApiSettingsSitesGetGet /settings/sitesFind all sites
SmartComputerGroupsPreviewApiV1ComputersIdRecalculateSmartGroupsPostPost /v1/computers/{id}/recalculate-smart-groupsRecalculate a smart group for the given id
SmartComputerGroupsPreviewApiV1SmartComputerGroupsIdRecalculatePostPost /v1/smart-computer-groups/{id}/recalculateRecalculate the smart group for the given id
SmartMobileDeviceGroupsPreviewApiV1MobileDevicesIdRecalculateSmartGroupsPostPost /v1/mobile-devices/{id}/recalculate-smart-groupsRecalculate all smart groups for the given device id and then return count of smart groups that device fall into
SmartMobileDeviceGroupsPreviewApiV1SmartMobileDeviceGroupsIdRecalculatePostPost /v1/smart-mobile-device-groups/{id}/recalculateRecalculate a smart group for the given id then return the ids for the devices in the smart group
SmartUserGroupsPreviewApiV1SmartUserGroupsIdRecalculatePostPost /v1/smart-user-groups/{id}/recalculateRecalculate the smart group for the given id and then return the ids for the users in the smart group
SmartUserGroupsPreviewApiV1UsersIdRecalculateSmartGroupsPostPost /v1/users/{id}/recalculate-smart-groupsRecalculate a smart group for the given user id and then return the count of smart groups the user falls into
SsoCertificateApiV2SsoCertDeleteDelete /v2/sso/certDelete the currently configured certificate used by SSO
SsoCertificateApiV2SsoCertDownloadGetGet /v2/sso/cert/downloadDownload the certificate currently configured for use with Jamf Pro's SSO configuration
SsoCertificateApiV2SsoCertGetGet /v2/sso/certRetrieve the certificate currently configured for use with SSO
SsoCertificateApiV2SsoCertParsePostPost /v2/sso/cert/parseParse the certificate to get details about certificate type and keys needed to upload certificate file
SsoCertificateApiV2SsoCertPostPost /v2/sso/certJamf Pro will generate a new certificate and use it to sign SSO
SsoCertificateApiV2SsoCertPutPut /v2/sso/certUpdate the certificate used by Jamf Pro to sign SSO requests to the identify provider
SsoCertificatePreviewApiV1SsoCertDeleteDelete /v1/sso/certDelete the currently configured certificate used by SSO
SsoCertificatePreviewApiV1SsoCertDownloadGetGet /v1/sso/cert/downloadDownload the certificate currently configured for use with Jamf Pro's SSO configuration
SsoCertificatePreviewApiV1SsoCertGetGet /v1/sso/certRetrieve the certificate currently configured for use with SSO
SsoCertificatePreviewApiV1SsoCertParsePostPost /v1/sso/cert/parseParse the certificate to get details about certificate type and keys needed to upload certificate file
SsoCertificatePreviewApiV1SsoCertPostPost /v1/sso/certJamf Pro will generate a new certificate and use it to sign SSO
SsoCertificatePreviewApiV1SsoCertPutPut /v1/sso/certUpdate the certificate used by Jamf Pro to sign SSO requests to the identify provider
SsoSettingsApiV1SsoDependenciesGetGet /v1/sso/dependenciesRetrieve the list of Enrollment Customizations using SSO
SsoSettingsApiV1SsoDisablePostPost /v1/sso/disableDisable SSO
SsoSettingsApiV1SsoGetGet /v1/ssoRetrieve the current Single Sign On configuration settings
SsoSettingsApiV1SsoHistoryGetGet /v1/sso/historyGet SSO history object
SsoSettingsApiV1SsoHistoryPostPost /v1/sso/historyAdd SSO history object notes
SsoSettingsApiV1SsoMetadataDownloadGetGet /v1/sso/metadata/downloadDownload the Jamf Pro SAML metadata file
SsoSettingsApiV1SsoPutPut /v1/ssoUpdates the current Single Sign On configuration settings
SsoSettingsApiV1SsoValidatePostPost /v1/sso/validateEndpoint for validation of a saml metadata url
StartupStatusApiStartupStatusGetGet /startup-statusRetrieve information about application startup
StaticUserGroupsPreviewApiV1StaticUserGroupsGetGet /v1/static-user-groupsReturn a list of all Static User Groups
StaticUserGroupsPreviewApiV1StaticUserGroupsIdGetGet /v1/static-user-groups/{id}Return a specific Static User Group by id
SupervisionIdentitiesPreviewApiV1SupervisionIdentitiesGetGet /v1/supervision-identitiesSearch for sorted and paged Supervision Identities
SupervisionIdentitiesPreviewApiV1SupervisionIdentitiesIdDeleteDelete /v1/supervision-identities/{id}Delete a Supervision Identity with the supplied id
SupervisionIdentitiesPreviewApiV1SupervisionIdentitiesIdDownloadGetGet /v1/supervision-identities/{id}/downloadDownload the Supervision Identity .p12 file
SupervisionIdentitiesPreviewApiV1SupervisionIdentitiesIdGetGet /v1/supervision-identities/{id}Retrieve a Supervision Identity with the supplied id
SupervisionIdentitiesPreviewApiV1SupervisionIdentitiesIdPutPut /v1/supervision-identities/{id}Update a Supervision Identity with the supplied information
SupervisionIdentitiesPreviewApiV1SupervisionIdentitiesPostPost /v1/supervision-identitiesCreate a Supervision Identity for the supplied information
SupervisionIdentitiesPreviewApiV1SupervisionIdentitiesUploadPostPost /v1/supervision-identities/uploadUpload the Supervision Identity .p12 file
TeacherAppApiV1TeacherAppGetGet /v1/teacher-appGet the Jamf Teacher settings that you have access to see
TeacherAppApiV1TeacherAppHistoryGetGet /v1/teacher-app/historyGet Jamf Teacher app settings history
TeacherAppApiV1TeacherAppHistoryPostPost /v1/teacher-app/historyAdd Jamf Teacher app settings history notes
TeacherAppApiV1TeacherAppPutPut /v1/teacher-appUpdate a Jamf Teacher settings object
TeamViewerRemoteAdministrationApiPreviewRemoteAdministrationConfigurationsTeamViewerConfigurationIdSessionsGetGet /preview/remote-administration-configurations/team-viewer/{configurationId}/sessionsGet a paginated list of sessions
TeamViewerRemoteAdministrationApiPreviewRemoteAdministrationConfigurationsTeamViewerConfigurationIdSessionsPostPost /preview/remote-administration-configurations/team-viewer/{configurationId}/sessionsCreate a new session
TeamViewerRemoteAdministrationApiPreviewRemoteAdministrationConfigurationsTeamViewerConfigurationIdSessionsSessionIdClosePostPost /preview/remote-administration-configurations/team-viewer/{configurationId}/sessions/{sessionId}/closeClose a session
TeamViewerRemoteAdministrationApiPreviewRemoteAdministrationConfigurationsTeamViewerConfigurationIdSessionsSessionIdGetGet /preview/remote-administration-configurations/team-viewer/{configurationId}/sessions/{sessionId}Get a session by its ID
TeamViewerRemoteAdministrationApiPreviewRemoteAdministrationConfigurationsTeamViewerConfigurationIdSessionsSessionIdResendNotificationPostPost /preview/remote-administration-configurations/team-viewer/{configurationId}/sessions/{sessionId}/resend-notificationResend nofications for a session
TeamViewerRemoteAdministrationApiPreviewRemoteAdministrationConfigurationsTeamViewerConfigurationIdSessionsSessionIdStatusGetGet /preview/remote-administration-configurations/team-viewer/{configurationId}/sessions/{sessionId}/statusGet a session status by its ID
TeamViewerRemoteAdministrationApiPreviewRemoteAdministrationConfigurationsTeamViewerIdDeleteDelete /preview/remote-administration-configurations/team-viewer/{id}Delete Team Viewer Remote Administration connection configuration
TeamViewerRemoteAdministrationApiPreviewRemoteAdministrationConfigurationsTeamViewerIdGetGet /preview/remote-administration-configurations/team-viewer/{id}Get Team Viewer Remote Administration connection configuration
TeamViewerRemoteAdministrationApiPreviewRemoteAdministrationConfigurationsTeamViewerIdPatchPatch /preview/remote-administration-configurations/team-viewer/{id}Update Team Viewer Remote Administration connection configuration
TeamViewerRemoteAdministrationApiPreviewRemoteAdministrationConfigurationsTeamViewerIdStatusGetGet /preview/remote-administration-configurations/team-viewer/{id}/statusGet Team Viewer Remote Administration connection status
TeamViewerRemoteAdministrationApiPreviewRemoteAdministrationConfigurationsTeamViewerPostPost /preview/remote-administration-configurations/team-viewerCreate Team Viewer Remote Administration connection configuration
TimeZonesPreviewApiV1TimeZonesGetGet /v1/time-zonesReturn information about the currently supported Time Zones
TomcatSettingsPreviewApiSettingsIssueTomcatSslCertificatePostPost /settings/issueTomcatSslCertificateGenerate a SSL Certificate using Jamf Certificate Authority
UserSessionPreviewApiUserGetGet /userReturn all Jamf Pro user acounts
UserSessionPreviewApiUserUpdateSessionPostPost /user/updateSessionUpdate values in the User's current session
VenafiPreviewApiV1PkiVenafiIdConnectionStatusGetGet /v1/pki/venafi/{id}/connection-statusTests the communication between Jamf Pro and a Jamf Pro PKI Proxy Server
VenafiPreviewApiV1PkiVenafiIdDeleteDelete /v1/pki/venafi/{id}Delete a Venafi PKI configuration from Jamf Pro
VenafiPreviewApiV1PkiVenafiIdDependentProfilesGetGet /v1/pki/venafi/{id}/dependent-profilesGet configuration profile data using specified Venafi CA object
VenafiPreviewApiV1PkiVenafiIdGetGet /v1/pki/venafi/{id}Retrieve a Venafi PKI configuration from Jamf Pro
VenafiPreviewApiV1PkiVenafiIdHistoryGetGet /v1/pki/venafi/{id}/historyGet specified Venafi CA history object
VenafiPreviewApiV1PkiVenafiIdHistoryPostPost /v1/pki/venafi/{id}/historyAdd specified Venafi CA Object Note
VenafiPreviewApiV1PkiVenafiIdJamfPublicKeyGetGet /v1/pki/venafi/{id}/jamf-public-keyDownloads a certificate used to secure communication between Jamf Pro and a Jamf Pro PKI Proxy Server
VenafiPreviewApiV1PkiVenafiIdJamfPublicKeyRegeneratePostPost /v1/pki/venafi/{id}/jamf-public-key/regenerateRegenerates a certificate used to secure communication between Jamf Pro and a Jamf Pro PKI Proxy Server
VenafiPreviewApiV1PkiVenafiIdPatchPatch /v1/pki/venafi/{id}Update a Venafi PKI configuration in Jamf Pro
VenafiPreviewApiV1PkiVenafiIdProxyTrustStoreDeleteDelete /v1/pki/venafi/{id}/proxy-trust-storeRemoves the PKI Proxy Server public key used to secure communication between Jamf Pro and a Jamf Pro PKI Proxy Server
VenafiPreviewApiV1PkiVenafiIdProxyTrustStoreGetGet /v1/pki/venafi/{id}/proxy-trust-storeDownloads the PKI Proxy Server public key to secure communication between Jamf Pro and a Jamf Pro PKI Proxy Server
VenafiPreviewApiV1PkiVenafiIdProxyTrustStorePostPost /v1/pki/venafi/{id}/proxy-trust-storeUploads the PKI Proxy Server public key to secure communication between Jamf Pro and a Jamf Pro PKI Proxy Server
VenafiPreviewApiV1PkiVenafiPostPost /v1/pki/venafiCreate a PKI configuration in Jamf Pro for Venafi
VolumePurchasingLocationsApiV1VolumePurchasingLocationsGetGet /v1/volume-purchasing-locationsRetrieve Volume Purchasing Locations
VolumePurchasingLocationsApiV1VolumePurchasingLocationsIdDeleteDelete /v1/volume-purchasing-locations/{id}Delete a Volume Purchasing Location with the supplied id
VolumePurchasingLocationsApiV1VolumePurchasingLocationsIdGetGet /v1/volume-purchasing-locations/{id}Retrieve a Volume Purchasing Location with the supplied id
VolumePurchasingLocationsApiV1VolumePurchasingLocationsIdHistoryGetGet /v1/volume-purchasing-locations/{id}/historyGet specified Volume Purchasing Location history object
VolumePurchasingLocationsApiV1VolumePurchasingLocationsIdPatchPatch /v1/volume-purchasing-locations/{id}Update a Volume Purchasing Location
VolumePurchasingLocationsApiV1VolumePurchasingLocationsIdReclaimPostPost /v1/volume-purchasing-locations/{id}/reclaimReclaim a Volume Purchasing Location with the supplied id
VolumePurchasingLocationsApiV1VolumePurchasingLocationsIdRevokeLicensesPostPost /v1/volume-purchasing-locations/{id}/revoke-licensesRevoke licenses for a Volume Purchasing Location with the supplied id
VolumePurchasingLocationsApiV1VolumePurchasingLocationsPostPost /v1/volume-purchasing-locationsCreate a Volume Purchasing Location
VolumePurchasingSubscriptionsApiV1VolumePurchasingSubscriptionsGetGet /v1/volume-purchasing-subscriptionsRetrieve Volume Purchasing Subscriptions
VolumePurchasingSubscriptionsApiV1VolumePurchasingSubscriptionsIdDeleteDelete /v1/volume-purchasing-subscriptions/{id}Delete a Volume Purchasing Subscription with the supplied id
VolumePurchasingSubscriptionsApiV1VolumePurchasingSubscriptionsIdGetGet /v1/volume-purchasing-subscriptions/{id}Retrieve a Volume Purchasing Subscription with the supplied id
VolumePurchasingSubscriptionsApiV1VolumePurchasingSubscriptionsIdPutPut /v1/volume-purchasing-subscriptions/{id}Update a Volume Purchasing Subscription
VolumePurchasingSubscriptionsApiV1VolumePurchasingSubscriptionsPostPost /v1/volume-purchasing-subscriptionsCreate a Volume Purchasing Subscription
VppAdminAccountsPreviewApiVppAdminAccountsGetGet /vpp/admin-accountsFound all VPP Admin Accounts
VppSubscriptionsPreviewApiVppSubscriptionsGetGet /vpp/subscriptionsFound all VPP - subscriptions
VppSubscriptionsPreviewApiVppSubscriptionsIdGetGet /vpp/subscriptions/{id}Found VPP subscription by id

Documentation For Models

Documentation For Authorization

BasicAuth

  • Type: HTTP basic authentication

Example

auth := context.WithValue(context.Background(), sw.ContextBasicAuth, sw.BasicAuth{
    UserName: "username",
    Password: "password",
})
r, err := client.Service.Operation(auth, args)

Bearer

  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "BEARER_TOKEN_STRING")
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
DeleteUserCommandAsMdmCommandRequestCommandData is a convenience function that returns DeleteUserCommand wrapped in MdmCommandRequestCommandData.
EnableLostModeCommandAsMdmCommandRequestCommandData is a convenience function that returns EnableLostModeCommand wrapped in MdmCommandRequestCommandData.
LogOutUserCommandAsMdmCommandRequestCommandData is a convenience function that returns LogOutUserCommand wrapped in MdmCommandRequestCommandData.
NewAccessGroupsPreviewSearchResults instantiates a new AccessGroupsPreviewSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessGroupsPreviewSearchResultsWithDefaults instantiates a new AccessGroupsPreviewSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessGroupsSearchResults instantiates a new AccessGroupsSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessGroupsSearchResultsWithDefaults instantiates a new AccessGroupsSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessGroupsV2SearchResults instantiates a new AccessGroupsV2SearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessGroupsV2SearchResultsWithDefaults instantiates a new AccessGroupsV2SearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccount instantiates a new Account object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountGroup instantiates a new AccountGroup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountGroupWithDefaults instantiates a new AccountGroup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountPreferences instantiates a new AccountPreferences object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountPreferencesV1 instantiates a new AccountPreferencesV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountPreferencesV1WithDefaults instantiates a new AccountPreferencesV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountPreferencesV4 instantiates a new AccountPreferencesV4 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountPreferencesV4WithDefaults instantiates a new AccountPreferencesV4 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountPreferencesWithDefaults instantiates a new AccountPreferences object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountWithDefaults instantiates a new Account object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivePatchHistory instantiates a new ActivePatchHistory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivePatchHistorySearchResults instantiates a new ActivePatchHistorySearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivePatchHistorySearchResultsWithDefaults instantiates a new ActivePatchHistorySearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivePatchHistoryWithDefaults instantiates a new ActivePatchHistory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivePatchSummary instantiates a new ActivePatchSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivePatchSummaryWithDefaults instantiates a new ActivePatchSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAdminAccount instantiates a new AdminAccount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAdminAccountWithDefaults instantiates a new AdminAccount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAdvancedSearch instantiates a new AdvancedSearch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAdvancedSearchCriteriaChoices instantiates a new AdvancedSearchCriteriaChoices object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAdvancedSearchCriteriaChoicesWithDefaults instantiates a new AdvancedSearchCriteriaChoices object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAdvancedSearchSearchResults instantiates a new AdvancedSearchSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAdvancedSearchSearchResultsWithDefaults instantiates a new AdvancedSearchSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAdvancedSearchWithDefaults instantiates a new AdvancedSearch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAdvancedUserContentSearch instantiates a new AdvancedUserContentSearch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAdvancedUserContentSearchSearchResults instantiates a new AdvancedUserContentSearchSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAdvancedUserContentSearchSearchResultsWithDefaults instantiates a new AdvancedUserContentSearchSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAdvancedUserContentSearchWithDefaults instantiates a new AdvancedUserContentSearch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAndroidDetails instantiates a new AndroidDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAndroidDetailsWithDefaults instantiates a new AndroidDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewApiError instantiates a new ApiError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApiErrorCause instantiates a new ApiErrorCause object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApiErrorCauseWithDefaults instantiates a new ApiErrorCause object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApiErrorWithDefaults instantiates a new ApiError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewAppAnalyticsSettingFromValue returns a pointer to a valid AppAnalyticsSetting for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewAppDynamicsConfig instantiates a new AppDynamicsConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppDynamicsConfigWithDefaults instantiates a new AppDynamicsConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppleTvDetails instantiates a new AppleTvDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppleTvDetailsWithDefaults instantiates a new AppleTvDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApplicationAttributes instantiates a new ApplicationAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationAttributesWithDefaults instantiates a new ApplicationAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApplicationConfiguration instantiates a new ApplicationConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationConfigurationWithDefaults instantiates a new ApplicationConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppPath instantiates a new AppPath object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppPathWithDefaults instantiates a new AppPath object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppRequestFormInputField instantiates a new AppRequestFormInputField object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppRequestFormInputFieldSearchResults instantiates a new AppRequestFormInputFieldSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppRequestFormInputFieldSearchResultsWithDefaults instantiates a new AppRequestFormInputFieldSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppRequestFormInputFieldWithDefaults instantiates a new AppRequestFormInputField object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAppRequestSettings instantiates a new AppRequestSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAppRequestSettingsWithDefaults instantiates a new AppRequestSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAssignRemoveProfileResponseSyncState instantiates a new AssignRemoveProfileResponseSyncState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAssignRemoveProfileResponseSyncStateWithDefaults instantiates a new AssignRemoveProfileResponseSyncState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAttributes instantiates a new Attributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAttributesWithDefaults instantiates a new Attributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuthAccount instantiates a new AuthAccount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthAccountV1 instantiates a new AuthAccountV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthAccountV1WithDefaults instantiates a new AuthAccountV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuthAccountWithDefaults instantiates a new AuthAccount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuthorization instantiates a new Authorization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthorizationV1 instantiates a new AuthorizationV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthorizationV1WithDefaults instantiates a new AuthorizationV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuthorizationWithDefaults instantiates a new Authorization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuthToken instantiates a new AuthToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthTokenV1 instantiates a new AuthTokenV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthTokenV1WithDefaults instantiates a new AuthTokenV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuthTokenWithDefaults instantiates a new AuthToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAvailableUpdates instantiates a new AvailableUpdates object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAvailableUpdatesWithDefaults instantiates a new AvailableUpdates object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureAdMigrationReportProcessStatus instantiates a new AzureAdMigrationReportProcessStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureAdMigrationReportProcessStatusWithDefaults instantiates a new AzureAdMigrationReportProcessStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureAdMigrationReportRequest instantiates a new AzureAdMigrationReportRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureAdMigrationReportRequestWithDefaults instantiates a new AzureAdMigrationReportRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureConfiguration instantiates a new AzureConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureConfigurationRequest instantiates a new AzureConfigurationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureConfigurationRequestWithDefaults instantiates a new AzureConfigurationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureConfigurationUpdate instantiates a new AzureConfigurationUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureConfigurationUpdateWithDefaults instantiates a new AzureConfigurationUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureConfigurationWithDefaults instantiates a new AzureConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureMappings instantiates a new AzureMappings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureMappingsWithDefaults instantiates a new AzureMappings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureServerConfiguration instantiates a new AzureServerConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureServerConfigurationRequest instantiates a new AzureServerConfigurationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureServerConfigurationRequestWithDefaults instantiates a new AzureServerConfigurationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureServerConfigurationUpdate instantiates a new AzureServerConfigurationUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureServerConfigurationUpdateWithDefaults instantiates a new AzureServerConfigurationUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureServerConfigurationWithDefaults instantiates a new AzureServerConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBrandingImageUrl instantiates a new BrandingImageUrl object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBrandingImageUrlWithDefaults instantiates a new BrandingImageUrl object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBuilding instantiates a new Building object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBuildingSearchResults instantiates a new BuildingSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBuildingSearchResultsWithDefaults instantiates a new BuildingSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBuildingWithDefaults instantiates a new Building object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCacheSettings instantiates a new CacheSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCacheSettingsWithDefaults instantiates a new CacheSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCategoriesSearchResults instantiates a new CategoriesSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCategoriesSearchResultsWithDefaults instantiates a new CategoriesSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCategory instantiates a new Category object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCategoryWithDefaults instantiates a new Category object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCertificateDetails instantiates a new CertificateDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCertificateDetailsWithDefaults instantiates a new CertificateDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCertificateIdentityV1 instantiates a new CertificateIdentityV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCertificateIdentityV1WithDefaults instantiates a new CertificateIdentityV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCertificateIdentityV2 instantiates a new CertificateIdentityV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCertificateIdentityV2WithDefaults instantiates a new CertificateIdentityV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCertificateKey instantiates a new CertificateKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCertificateKeyWithDefaults instantiates a new CertificateKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCertificateRecord instantiates a new CertificateRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCertificateRecordWithDefaults instantiates a new CertificateRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewClassicLdapMappings instantiates a new ClassicLdapMappings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClassicLdapMappingsWithDefaults instantiates a new ClassicLdapMappings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewClientCheckInV2 instantiates a new ClientCheckInV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClientCheckInV2WithDefaults instantiates a new ClientCheckInV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewClientCheckInV3 instantiates a new ClientCheckInV3 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClientCheckInV3WithDefaults instantiates a new ClientCheckInV3 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudIdPCommon instantiates a new CloudIdPCommon object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudIdPCommonRequest instantiates a new CloudIdPCommonRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudIdPCommonRequestWithDefaults instantiates a new CloudIdPCommonRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudIdPCommonResponse instantiates a new CloudIdPCommonResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudIdPCommonResponseWithDefaults instantiates a new CloudIdPCommonResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudIdPCommonWithDefaults instantiates a new CloudIdPCommon object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudLdapConnectionPoolStatistics instantiates a new CloudLdapConnectionPoolStatistics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudLdapConnectionPoolStatisticsWithDefaults instantiates a new CloudLdapConnectionPoolStatistics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudLdapConnectionStatus instantiates a new CloudLdapConnectionStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudLdapConnectionStatusWithDefaults instantiates a new CloudLdapConnectionStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudLdapKeystore instantiates a new CloudLdapKeystore object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudLdapKeystoreFile instantiates a new CloudLdapKeystoreFile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudLdapKeystoreFileWithDefaults instantiates a new CloudLdapKeystoreFile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudLdapKeystoreWithDefaults instantiates a new CloudLdapKeystore object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudLdapMappingsRequest instantiates a new CloudLdapMappingsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudLdapMappingsRequestWithDefaults instantiates a new CloudLdapMappingsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudLdapMappingsResponse instantiates a new CloudLdapMappingsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudLdapMappingsResponseWithDefaults instantiates a new CloudLdapMappingsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudLdapServerRequest instantiates a new CloudLdapServerRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudLdapServerRequestWithDefaults instantiates a new CloudLdapServerRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudLdapServerResponse instantiates a new CloudLdapServerResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudLdapServerResponseWithDefaults instantiates a new CloudLdapServerResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCloudLdapServerUpdate instantiates a new CloudLdapServerUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCloudLdapServerUpdateWithDefaults instantiates a new CloudLdapServerUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerApplication instantiates a new ComputerApplication object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerApplicationWithDefaults instantiates a new ComputerApplication object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerAttachment instantiates a new ComputerAttachment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerAttachmentWithDefaults instantiates a new ComputerAttachment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerCertificate instantiates a new ComputerCertificate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerCertificateWithDefaults instantiates a new ComputerCertificate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerConfigurationProfile instantiates a new ComputerConfigurationProfile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerConfigurationProfileWithDefaults instantiates a new ComputerConfigurationProfile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerContentCaching instantiates a new ComputerContentCaching object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerContentCachingAlert instantiates a new ComputerContentCachingAlert object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerContentCachingAlertWithDefaults instantiates a new ComputerContentCachingAlert object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerContentCachingCacheDetail instantiates a new ComputerContentCachingCacheDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerContentCachingCacheDetailWithDefaults instantiates a new ComputerContentCachingCacheDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerContentCachingDataMigrationError instantiates a new ComputerContentCachingDataMigrationError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerContentCachingDataMigrationErrorUserInfo instantiates a new ComputerContentCachingDataMigrationErrorUserInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerContentCachingDataMigrationErrorUserInfoWithDefaults instantiates a new ComputerContentCachingDataMigrationErrorUserInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerContentCachingDataMigrationErrorWithDefaults instantiates a new ComputerContentCachingDataMigrationError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerContentCachingParent instantiates a new ComputerContentCachingParent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerContentCachingParentAlert instantiates a new ComputerContentCachingParentAlert object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerContentCachingParentAlertWithDefaults instantiates a new ComputerContentCachingParentAlert object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerContentCachingParentCapabilities instantiates a new ComputerContentCachingParentCapabilities object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerContentCachingParentCapabilitiesWithDefaults instantiates a new ComputerContentCachingParentCapabilities object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerContentCachingParentDetails instantiates a new ComputerContentCachingParentDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerContentCachingParentDetailsWithDefaults instantiates a new ComputerContentCachingParentDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerContentCachingParentLocalNetwork instantiates a new ComputerContentCachingParentLocalNetwork object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerContentCachingParentLocalNetworkWithDefaults instantiates a new ComputerContentCachingParentLocalNetwork object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerContentCachingParentWithDefaults instantiates a new ComputerContentCachingParent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerContentCachingWithDefaults instantiates a new ComputerContentCaching object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerDisk instantiates a new ComputerDisk object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerDiskEncryption instantiates a new ComputerDiskEncryption object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerDiskEncryptionWithDefaults instantiates a new ComputerDiskEncryption object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerDiskWithDefaults instantiates a new ComputerDisk object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerExtensionAttribute instantiates a new ComputerExtensionAttribute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerExtensionAttributeWithDefaults instantiates a new ComputerExtensionAttribute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerFont instantiates a new ComputerFont object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerFontWithDefaults instantiates a new ComputerFont object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerGeneral instantiates a new ComputerGeneral object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerGeneralUpdate instantiates a new ComputerGeneralUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerGeneralUpdateWithDefaults instantiates a new ComputerGeneralUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerGeneralWithDefaults instantiates a new ComputerGeneral object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerHardware instantiates a new ComputerHardware object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerHardwareUpdate instantiates a new ComputerHardwareUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerHardwareUpdateWithDefaults instantiates a new ComputerHardwareUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerHardwareWithDefaults instantiates a new ComputerHardware object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerIbeacon instantiates a new ComputerIbeacon object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerIbeaconWithDefaults instantiates a new ComputerIbeacon object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerInventoryCollectionPreferences instantiates a new ComputerInventoryCollectionPreferences object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerInventoryCollectionPreferencesWithDefaults instantiates a new ComputerInventoryCollectionPreferences object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerInventoryCollectionSettings instantiates a new ComputerInventoryCollectionSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerInventoryCollectionSettingsWithDefaults instantiates a new ComputerInventoryCollectionSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerInventoryRecoveryLockPasswordResponse instantiates a new ComputerInventoryRecoveryLockPasswordResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerInventoryRecoveryLockPasswordResponseWithDefaults instantiates a new ComputerInventoryRecoveryLockPasswordResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerInventoryResponse instantiates a new ComputerInventoryResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerInventoryResponseWithDefaults instantiates a new ComputerInventoryResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerInventorySearchResults instantiates a new ComputerInventorySearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerInventorySearchResultsWithDefaults instantiates a new ComputerInventorySearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerInventoryUpdateRequest instantiates a new ComputerInventoryUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerInventoryUpdateRequestWithDefaults instantiates a new ComputerInventoryUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerLicensedSoftware instantiates a new ComputerLicensedSoftware object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerLicensedSoftwareWithDefaults instantiates a new ComputerLicensedSoftware object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerLocalUserAccount instantiates a new ComputerLocalUserAccount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerLocalUserAccountWithDefaults instantiates a new ComputerLocalUserAccount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerLocation instantiates a new ComputerLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerLocationWithDefaults instantiates a new ComputerLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerMdmCapability instantiates a new ComputerMdmCapability object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerMdmCapabilityWithDefaults instantiates a new ComputerMdmCapability object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerOperatingSystem instantiates a new ComputerOperatingSystem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerOperatingSystemUpdate instantiates a new ComputerOperatingSystemUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerOperatingSystemUpdateWithDefaults instantiates a new ComputerOperatingSystemUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerOperatingSystemWithDefaults instantiates a new ComputerOperatingSystem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerOverview instantiates a new ComputerOverview object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerOverviewWithDefaults instantiates a new ComputerOverview object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerPackageReceipts instantiates a new ComputerPackageReceipts object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerPackageReceiptsWithDefaults instantiates a new ComputerPackageReceipts object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerPartition instantiates a new ComputerPartition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerPartitionEncryption instantiates a new ComputerPartitionEncryption object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerPartitionEncryptionWithDefaults instantiates a new ComputerPartitionEncryption object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerPartitionFileVault2StateFromValue returns a pointer to a valid ComputerPartitionFileVault2State for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewComputerPartitionWithDefaults instantiates a new ComputerPartition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerPlugin instantiates a new ComputerPlugin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerPluginWithDefaults instantiates a new ComputerPlugin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerPrestage instantiates a new ComputerPrestage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerPrestageAllOf instantiates a new ComputerPrestageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerPrestageAllOfWithDefaults instantiates a new ComputerPrestageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerPrestageSearchResults instantiates a new ComputerPrestageSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerPrestageSearchResultsV2 instantiates a new ComputerPrestageSearchResultsV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerPrestageSearchResultsV2WithDefaults instantiates a new ComputerPrestageSearchResultsV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerPrestageSearchResultsWithDefaults instantiates a new ComputerPrestageSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerPrestageV2 instantiates a new ComputerPrestageV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerPrestageV2AllOf instantiates a new ComputerPrestageV2AllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerPrestageV2AllOfWithDefaults instantiates a new ComputerPrestageV2AllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerPrestageV2WithDefaults instantiates a new ComputerPrestageV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerPrestageWithDefaults instantiates a new ComputerPrestage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerPrinter instantiates a new ComputerPrinter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerPrinterWithDefaults instantiates a new ComputerPrinter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerPurchase instantiates a new ComputerPurchase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerPurchaseWithDefaults instantiates a new ComputerPurchase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerRemoteManagement instantiates a new ComputerRemoteManagement object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerRemoteManagementWithDefaults instantiates a new ComputerRemoteManagement object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerSectionFromValue returns a pointer to a valid ComputerSection for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewComputerSecurity instantiates a new ComputerSecurity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerSecurityWithDefaults instantiates a new ComputerSecurity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerService instantiates a new ComputerService object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerServiceWithDefaults instantiates a new ComputerService object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerSoftwareUpdate instantiates a new ComputerSoftwareUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerSoftwareUpdateWithDefaults instantiates a new ComputerSoftwareUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputersSearchResults instantiates a new ComputersSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputersSearchResultsWithDefaults instantiates a new ComputersSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerStorage instantiates a new ComputerStorage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerStorageWithDefaults instantiates a new ComputerStorage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComputerUserAndLocation instantiates a new ComputerUserAndLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComputerUserAndLocationWithDefaults instantiates a new ComputerUserAndLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewConfigurationProfile instantiates a new ConfigurationProfile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigurationProfileWithDefaults instantiates a new ConfigurationProfile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigurationSearchResults instantiates a new ConfigurationSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigurationSearchResultsWithDefaults instantiates a new ConfigurationSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConnectionConfigurationCandidateRequest instantiates a new ConnectionConfigurationCandidateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConnectionConfigurationCandidateRequestWithDefaults instantiates a new ConnectionConfigurationCandidateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConnectionConfigurationResponse instantiates a new ConnectionConfigurationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConnectionConfigurationResponseWithDefaults instantiates a new ConnectionConfigurationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConnectionConfigurationStatusResponse instantiates a new ConnectionConfigurationStatusResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConnectionConfigurationStatusResponseWithDefaults instantiates a new ConnectionConfigurationStatusResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConnectionConfigurationUpdateRequest instantiates a new ConnectionConfigurationUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConnectionConfigurationUpdateRequestWithDefaults instantiates a new ConnectionConfigurationUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCountry instantiates a new Country object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCountryCodes instantiates a new CountryCodes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCountryCodesWithDefaults instantiates a new CountryCodes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCountryWithDefaults instantiates a new Country object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreatePath instantiates a new CreatePath object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreatePathWithDefaults instantiates a new CreatePath object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCsaToken instantiates a new CsaToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCsaTokenWithDefaults instantiates a new CsaToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCurrentAccount instantiates a new CurrentAccount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCurrentAccountWithDefaults instantiates a new CurrentAccount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCurrentAuthorization instantiates a new CurrentAuthorization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCurrentAuthorizationWithDefaults instantiates a new CurrentAuthorization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDatabasePassword instantiates a new DatabasePassword object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDatabasePasswordWithDefaults instantiates a new DatabasePassword object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDataRoamingSettingFromValue returns a pointer to a valid DataRoamingSetting for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewDayOfWeekFromValue returns a pointer to a valid DayOfWeek for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewDeleteUserCommand instantiates a new DeleteUserCommand object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteUserCommandWithDefaults instantiates a new DeleteUserCommand object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDepartment instantiates a new Department object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDepartmentsSearchResults instantiates a new DepartmentsSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDepartmentsSearchResultsWithDefaults instantiates a new DepartmentsSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDepartmentWithDefaults instantiates a new Department object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentTask instantiates a new DeploymentTask object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentTaskSearchResults instantiates a new DeploymentTaskSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeploymentTaskSearchResultsWithDefaults instantiates a new DeploymentTaskSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeploymentTaskWithDefaults instantiates a new DeploymentTask object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeprecatedConfigurationRequest instantiates a new DeprecatedConfigurationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeprecatedConfigurationRequestWithDefaults instantiates a new DeprecatedConfigurationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeprecatedConfigurationResponse instantiates a new DeprecatedConfigurationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeprecatedConfigurationResponseWithDefaults instantiates a new DeprecatedConfigurationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeprecatedConfigurationSearchResults instantiates a new DeprecatedConfigurationSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeprecatedConfigurationSearchResultsWithDefaults instantiates a new DeprecatedConfigurationSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeprecatedConfigurationUpdate instantiates a new DeprecatedConfigurationUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeprecatedConfigurationUpdateWithDefaults instantiates a new DeprecatedConfigurationUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeprecatedServerRequest instantiates a new DeprecatedServerRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeprecatedServerRequestWithDefaults instantiates a new DeprecatedServerRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeprecatedServerResponse instantiates a new DeprecatedServerResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeprecatedServerResponseWithDefaults instantiates a new DeprecatedServerResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeprecatedServerUpdate instantiates a new DeprecatedServerUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeprecatedServerUpdateWithDefaults instantiates a new DeprecatedServerUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceCommunicationSettings instantiates a new DeviceCommunicationSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceCommunicationSettingsWithDefaults instantiates a new DeviceCommunicationSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceComplianceInformation instantiates a new DeviceComplianceInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceComplianceInformationWithDefaults instantiates a new DeviceComplianceInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceEnrollmentDevice instantiates a new DeviceEnrollmentDevice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceEnrollmentDeviceSearchResults instantiates a new DeviceEnrollmentDeviceSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceEnrollmentDeviceSearchResultsWithDefaults instantiates a new DeviceEnrollmentDeviceSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceEnrollmentDeviceWithDefaults instantiates a new DeviceEnrollmentDevice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceEnrollmentDisownBody instantiates a new DeviceEnrollmentDisownBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceEnrollmentDisownBodyWithDefaults instantiates a new DeviceEnrollmentDisownBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceEnrollmentDisownResponse instantiates a new DeviceEnrollmentDisownResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceEnrollmentDisownResponseWithDefaults instantiates a new DeviceEnrollmentDisownResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceEnrollmentInstance instantiates a new DeviceEnrollmentInstance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceEnrollmentInstanceSearchResults instantiates a new DeviceEnrollmentInstanceSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceEnrollmentInstanceSearchResultsWithDefaults instantiates a new DeviceEnrollmentInstanceSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceEnrollmentInstanceSyncStatus instantiates a new DeviceEnrollmentInstanceSyncStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceEnrollmentInstanceSyncStatusWithDefaults instantiates a new DeviceEnrollmentInstanceSyncStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceEnrollmentInstanceWithDefaults instantiates a new DeviceEnrollmentInstance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceEnrollmentPrestage instantiates a new DeviceEnrollmentPrestage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceEnrollmentPrestageV2 instantiates a new DeviceEnrollmentPrestageV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceEnrollmentPrestageV2WithDefaults instantiates a new DeviceEnrollmentPrestageV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceEnrollmentPrestageWithDefaults instantiates a new DeviceEnrollmentPrestage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeviceEnrollmentToken instantiates a new DeviceEnrollmentToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeviceEnrollmentTokenWithDefaults instantiates a new DeviceEnrollmentToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDiagnosticSubmissionSettingFromValue returns a pointer to a valid DiagnosticSubmissionSetting for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewEbook instantiates a new Ebook object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEbookExclusions instantiates a new EbookExclusions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEbookExclusionsWithDefaults instantiates a new EbookExclusions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEbookLimitations instantiates a new EbookLimitations object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEbookLimitationsUsersInner instantiates a new EbookLimitationsUsersInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEbookLimitationsUsersInnerWithDefaults instantiates a new EbookLimitationsUsersInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEbookLimitationsWithDefaults instantiates a new EbookLimitations object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEbookScope instantiates a new EbookScope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEbookScopeWithDefaults instantiates a new EbookScope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEbookSearchResults instantiates a new EbookSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEbookSearchResultsWithDefaults instantiates a new EbookSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEbookWithDefaults instantiates a new Ebook object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnableLostModeCommand instantiates a new EnableLostModeCommand object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnableLostModeCommandWithDefaults instantiates a new EnableLostModeCommand object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEngage instantiates a new Engage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEngageWithDefaults instantiates a new Engage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentAccessGroup instantiates a new EnrollmentAccessGroup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentAccessGroupPreview instantiates a new EnrollmentAccessGroupPreview object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentAccessGroupPreviewWithDefaults instantiates a new EnrollmentAccessGroupPreview object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentAccessGroupV2 instantiates a new EnrollmentAccessGroupV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentAccessGroupV2WithDefaults instantiates a new EnrollmentAccessGroupV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentAccessGroupWithDefaults instantiates a new EnrollmentAccessGroup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomization instantiates a new EnrollmentCustomization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationBrandingSettings instantiates a new EnrollmentCustomizationBrandingSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationBrandingSettingsWithDefaults instantiates a new EnrollmentCustomizationBrandingSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationDependencies instantiates a new EnrollmentCustomizationDependencies object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationDependenciesWithDefaults instantiates a new EnrollmentCustomizationDependencies object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationDependency instantiates a new EnrollmentCustomizationDependency object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationDependencyWithDefaults instantiates a new EnrollmentCustomizationDependency object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationLdapGroupAccess instantiates a new EnrollmentCustomizationLdapGroupAccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationLdapGroupAccessWithDefaults instantiates a new EnrollmentCustomizationLdapGroupAccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationPanel instantiates a new EnrollmentCustomizationPanel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationPanelLdapAuth instantiates a new EnrollmentCustomizationPanelLdapAuth object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationPanelLdapAuthAllOf instantiates a new EnrollmentCustomizationPanelLdapAuthAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationPanelLdapAuthAllOfWithDefaults instantiates a new EnrollmentCustomizationPanelLdapAuthAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationPanelLdapAuthWithDefaults instantiates a new EnrollmentCustomizationPanelLdapAuth object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationPanelList instantiates a new EnrollmentCustomizationPanelList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationPanelListWithDefaults instantiates a new EnrollmentCustomizationPanelList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationPanelSsoAuth instantiates a new EnrollmentCustomizationPanelSsoAuth object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationPanelSsoAuthAllOf instantiates a new EnrollmentCustomizationPanelSsoAuthAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationPanelSsoAuthAllOfWithDefaults instantiates a new EnrollmentCustomizationPanelSsoAuthAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationPanelSsoAuthWithDefaults instantiates a new EnrollmentCustomizationPanelSsoAuth object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationPanelText instantiates a new EnrollmentCustomizationPanelText object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationPanelTextAllOf instantiates a new EnrollmentCustomizationPanelTextAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationPanelTextAllOfWithDefaults instantiates a new EnrollmentCustomizationPanelTextAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationPanelTextWithDefaults instantiates a new EnrollmentCustomizationPanelText object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationPanelWithDefaults instantiates a new EnrollmentCustomizationPanel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationSearchResults instantiates a new EnrollmentCustomizationSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationSearchResultsV2 instantiates a new EnrollmentCustomizationSearchResultsV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationSearchResultsV2WithDefaults instantiates a new EnrollmentCustomizationSearchResultsV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationSearchResultsWithDefaults instantiates a new EnrollmentCustomizationSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationV2 instantiates a new EnrollmentCustomizationV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentCustomizationV2WithDefaults instantiates a new EnrollmentCustomizationV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentCustomizationWithDefaults instantiates a new EnrollmentCustomization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentMethod instantiates a new EnrollmentMethod object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentMethodWithDefaults instantiates a new EnrollmentMethod object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentProcessTextObject instantiates a new EnrollmentProcessTextObject object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentProcessTextObjectWithDefaults instantiates a new EnrollmentProcessTextObject object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentSettings instantiates a new EnrollmentSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentSettingsV2 instantiates a new EnrollmentSettingsV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnrollmentSettingsV2WithDefaults instantiates a new EnrollmentSettingsV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnrollmentSettingsWithDefaults instantiates a new EnrollmentSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExportField instantiates a new ExportField object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExportFieldWithDefaults instantiates a new ExportField object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExportParameters instantiates a new ExportParameters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExportParametersWithDefaults instantiates a new ExportParameters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExtensionAttribute instantiates a new ExtensionAttribute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExtensionAttributeV2 instantiates a new ExtensionAttributeV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExtensionAttributeV2WithDefaults instantiates a new ExtensionAttributeV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExtensionAttributeWithDefaults instantiates a new ExtensionAttribute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExternalRecipient instantiates a new ExternalRecipient object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExternalRecipientWithDefaults instantiates a new ExternalRecipient object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFileAttachment instantiates a new FileAttachment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFileAttachmentDelete instantiates a new FileAttachmentDelete object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFileAttachmentDeleteWithDefaults instantiates a new FileAttachmentDelete object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFileAttachmentV2 instantiates a new FileAttachmentV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFileAttachmentV2WithDefaults instantiates a new FileAttachmentV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFileAttachmentWithDefaults instantiates a new FileAttachment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFilter instantiates a new Filter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFilterWithDefaults instantiates a new Filter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFontPath instantiates a new FontPath object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFontPathWithDefaults instantiates a new FontPath object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetComputerPrestage instantiates a new GetComputerPrestage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetComputerPrestageAllOf instantiates a new GetComputerPrestageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetComputerPrestageAllOfWithDefaults instantiates a new GetComputerPrestageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetComputerPrestageV2 instantiates a new GetComputerPrestageV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetComputerPrestageV2AllOf instantiates a new GetComputerPrestageV2AllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetComputerPrestageV2AllOfWithDefaults instantiates a new GetComputerPrestageV2AllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetComputerPrestageV2WithDefaults instantiates a new GetComputerPrestageV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetComputerPrestageWithDefaults instantiates a new GetComputerPrestage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEnrollmentCustomization instantiates a new GetEnrollmentCustomization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEnrollmentCustomizationAllOf instantiates a new GetEnrollmentCustomizationAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEnrollmentCustomizationAllOfWithDefaults instantiates a new GetEnrollmentCustomizationAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEnrollmentCustomizationPanel instantiates a new GetEnrollmentCustomizationPanel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEnrollmentCustomizationPanelAllOf instantiates a new GetEnrollmentCustomizationPanelAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEnrollmentCustomizationPanelAllOfWithDefaults instantiates a new GetEnrollmentCustomizationPanelAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEnrollmentCustomizationPanelLdapAuth instantiates a new GetEnrollmentCustomizationPanelLdapAuth object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEnrollmentCustomizationPanelLdapAuthAllOf instantiates a new GetEnrollmentCustomizationPanelLdapAuthAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEnrollmentCustomizationPanelLdapAuthAllOfWithDefaults instantiates a new GetEnrollmentCustomizationPanelLdapAuthAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEnrollmentCustomizationPanelLdapAuthWithDefaults instantiates a new GetEnrollmentCustomizationPanelLdapAuth object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEnrollmentCustomizationPanelSsoAuth instantiates a new GetEnrollmentCustomizationPanelSsoAuth object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEnrollmentCustomizationPanelSsoAuthAllOf instantiates a new GetEnrollmentCustomizationPanelSsoAuthAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEnrollmentCustomizationPanelSsoAuthAllOfWithDefaults instantiates a new GetEnrollmentCustomizationPanelSsoAuthAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEnrollmentCustomizationPanelSsoAuthWithDefaults instantiates a new GetEnrollmentCustomizationPanelSsoAuth object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEnrollmentCustomizationPanelText instantiates a new GetEnrollmentCustomizationPanelText object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetEnrollmentCustomizationPanelTextWithDefaults instantiates a new GetEnrollmentCustomizationPanelText object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEnrollmentCustomizationPanelWithDefaults instantiates a new GetEnrollmentCustomizationPanel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetEnrollmentCustomizationWithDefaults instantiates a new GetEnrollmentCustomization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetMobileDevicePrestage instantiates a new GetMobileDevicePrestage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetMobileDevicePrestageV2 instantiates a new GetMobileDevicePrestageV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetMobileDevicePrestageV2AllOf instantiates a new GetMobileDevicePrestageV2AllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetMobileDevicePrestageV2AllOfWithDefaults instantiates a new GetMobileDevicePrestageV2AllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetMobileDevicePrestageV2WithDefaults instantiates a new GetMobileDevicePrestageV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetMobileDevicePrestageWithDefaults instantiates a new GetMobileDevicePrestage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupMappings instantiates a new GroupMappings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupMappingsWithDefaults instantiates a new GroupMappings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupMembership instantiates a new GroupMembership object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupMembershipWithDefaults instantiates a new GroupMembership object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupTestSearch instantiates a new GroupTestSearch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupTestSearchRequest instantiates a new GroupTestSearchRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupTestSearchRequestWithDefaults instantiates a new GroupTestSearchRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupTestSearchResponse instantiates a new GroupTestSearchResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupTestSearchResponseWithDefaults instantiates a new GroupTestSearchResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupTestSearchWithDefaults instantiates a new GroupTestSearch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHistorySearchResults instantiates a new HistorySearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHistorySearchResultsV1 instantiates a new HistorySearchResultsV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHistorySearchResultsV1WithDefaults instantiates a new HistorySearchResultsV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHistorySearchResultsWithDefaults instantiates a new HistorySearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHrefResponse instantiates a new HrefResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHrefResponseWithDefaults instantiates a new HrefResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIconResponse instantiates a new IconResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIconResponseWithDefaults instantiates a new IconResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIdAndName instantiates a new IdAndName object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIdAndNameV2 instantiates a new IdAndNameV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIdAndNameV2WithDefaults instantiates a new IdAndNameV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIdAndNameWithDefaults instantiates a new IdAndName object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIds instantiates a new Ids object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIdsWithDefaults instantiates a new Ids object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInitialize instantiates a new Initialize object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInitializeV1 instantiates a new InitializeV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInitializeV1WithDefaults instantiates a new InitializeV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInitializeWithDefaults instantiates a new Initialize object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInstallPackage instantiates a new InstallPackage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInstallPackageWithDefaults instantiates a new InstallPackage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInternalRecipient instantiates a new InternalRecipient object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInternalRecipientWithDefaults instantiates a new InternalRecipient object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInventoryInformation instantiates a new InventoryInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInventoryInformationWithDefaults instantiates a new InventoryInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInventoryPreloadCsvError instantiates a new InventoryPreloadCsvError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInventoryPreloadCsvErrorWithDefaults instantiates a new InventoryPreloadCsvError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInventoryPreloadCsvValidationError instantiates a new InventoryPreloadCsvValidationError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInventoryPreloadCsvValidationErrorCause instantiates a new InventoryPreloadCsvValidationErrorCause object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInventoryPreloadCsvValidationErrorCauseAllOf instantiates a new InventoryPreloadCsvValidationErrorCauseAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInventoryPreloadCsvValidationErrorCauseAllOfWithDefaults instantiates a new InventoryPreloadCsvValidationErrorCauseAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInventoryPreloadCsvValidationErrorCauseWithDefaults instantiates a new InventoryPreloadCsvValidationErrorCause object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInventoryPreloadCsvValidationErrorWithDefaults instantiates a new InventoryPreloadCsvValidationError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInventoryPreloadCsvValidationSuccess instantiates a new InventoryPreloadCsvValidationSuccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInventoryPreloadCsvValidationSuccessWithDefaults instantiates a new InventoryPreloadCsvValidationSuccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInventoryPreloadExtensionAttribute instantiates a new InventoryPreloadExtensionAttribute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInventoryPreloadExtensionAttributeColumn instantiates a new InventoryPreloadExtensionAttributeColumn object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInventoryPreloadExtensionAttributeColumnResult instantiates a new InventoryPreloadExtensionAttributeColumnResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInventoryPreloadExtensionAttributeColumnResultWithDefaults instantiates a new InventoryPreloadExtensionAttributeColumnResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInventoryPreloadExtensionAttributeColumnWithDefaults instantiates a new InventoryPreloadExtensionAttributeColumn object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInventoryPreloadExtensionAttributeWithDefaults instantiates a new InventoryPreloadExtensionAttribute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInventoryPreloadInvalidCsvResponse instantiates a new InventoryPreloadInvalidCsvResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInventoryPreloadInvalidCsvResponseWithDefaults instantiates a new InventoryPreloadInvalidCsvResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInventoryPreloadRecord instantiates a new InventoryPreloadRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInventoryPreloadRecordSearchResults instantiates a new InventoryPreloadRecordSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInventoryPreloadRecordSearchResultsV2 instantiates a new InventoryPreloadRecordSearchResultsV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInventoryPreloadRecordSearchResultsV2WithDefaults instantiates a new InventoryPreloadRecordSearchResultsV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInventoryPreloadRecordSearchResultsWithDefaults instantiates a new InventoryPreloadRecordSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInventoryPreloadRecordV2 instantiates a new InventoryPreloadRecordV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInventoryPreloadRecordV2WithDefaults instantiates a new InventoryPreloadRecordV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInventoryPreloadRecordWithDefaults instantiates a new InventoryPreloadRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIosBrandingConfiguration instantiates a new IosBrandingConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIosBrandingConfigurationWithDefaults instantiates a new IosBrandingConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIosBrandingSearchResults instantiates a new IosBrandingSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIosBrandingSearchResultsWithDefaults instantiates a new IosBrandingSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIosDetails instantiates a new IosDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIosDetailsV2 instantiates a new IosDetailsV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIosDetailsV2WithDefaults instantiates a new IosDetailsV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIosDetailsWithDefaults instantiates a new IosDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewJamfApplicationResponse instantiates a new JamfApplicationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewJamfApplicationResponseWithDefaults instantiates a new JamfApplicationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewJamfNationCredentials instantiates a new JamfNationCredentials object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewJamfNationCredentialsWithDefaults instantiates a new JamfNationCredentials object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewJamfPackageResponse instantiates a new JamfPackageResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewJamfPackageResponseWithDefaults instantiates a new JamfPackageResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewJamfProInformation instantiates a new JamfProInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewJamfProInformationWithDefaults instantiates a new JamfProInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewJamfProServerUrl instantiates a new JamfProServerUrl object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewJamfProServerUrlWithDefaults instantiates a new JamfProServerUrl object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewJamfProtectPlan instantiates a new JamfProtectPlan object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewJamfProtectPlanWithDefaults instantiates a new JamfProtectPlan object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewJamfProVersion instantiates a new JamfProVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewJamfProVersionWithDefaults instantiates a new JamfProVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLanguageCode instantiates a new LanguageCode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLanguageCodeWithDefaults instantiates a new LanguageCode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLdapConfigurationRequest instantiates a new LdapConfigurationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLdapConfigurationRequestWithDefaults instantiates a new LdapConfigurationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLdapConfigurationResponse instantiates a new LdapConfigurationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLdapConfigurationResponseWithDefaults instantiates a new LdapConfigurationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLdapConfigurationUpdate instantiates a new LdapConfigurationUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLdapConfigurationUpdateWithDefaults instantiates a new LdapConfigurationUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLdapGroup instantiates a new LdapGroup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLdapGroupSearchResults instantiates a new LdapGroupSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLdapGroupSearchResultsWithDefaults instantiates a new LdapGroupSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLdapGroupWithDefaults instantiates a new LdapGroup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLdapServer instantiates a new LdapServer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLdapServerWithDefaults instantiates a new LdapServer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLinkedConnectProfile instantiates a new LinkedConnectProfile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLinkedConnectProfileSearchResults instantiates a new LinkedConnectProfileSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLinkedConnectProfileSearchResultsWithDefaults instantiates a new LinkedConnectProfileSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLinkedConnectProfileWithDefaults instantiates a new LinkedConnectProfile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLocale instantiates a new Locale object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLocaleWithDefaults instantiates a new Locale object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLocation instantiates a new Location object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLocationInformation instantiates a new LocationInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLocationInformationV2 instantiates a new LocationInformationV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLocationInformationV2WithDefaults instantiates a new LocationInformationV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLocationInformationWithDefaults instantiates a new LocationInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLocationV2 instantiates a new LocationV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLocationV2WithDefaults instantiates a new LocationV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLocationWithDefaults instantiates a new Location object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogOutUserCommand instantiates a new LogOutUserCommand object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogOutUserCommandWithDefaults instantiates a new LogOutUserCommand object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMacOsBrandingConfiguration instantiates a new MacOsBrandingConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMacOsBrandingConfigurationWithDefaults instantiates a new MacOsBrandingConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMacOsBrandingSearchResults instantiates a new MacOsBrandingSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMacOsBrandingSearchResultsWithDefaults instantiates a new MacOsBrandingSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMacOsManagedSoftwareUpdate instantiates a new MacOsManagedSoftwareUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMacOsManagedSoftwareUpdateResponse instantiates a new MacOsManagedSoftwareUpdateResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMacOsManagedSoftwareUpdateResponseWithDefaults instantiates a new MacOsManagedSoftwareUpdateResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMacOsManagedSoftwareUpdateWithDefaults instantiates a new MacOsManagedSoftwareUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMarkdown instantiates a new Markdown object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMarkdownWithDefaults instantiates a new Markdown object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMdmClientTypeFromValue returns a pointer to a valid MdmClientType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewMdmCommand instantiates a new MdmCommand object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMdmCommandClient instantiates a new MdmCommandClient object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMdmCommandClientWithDefaults instantiates a new MdmCommandClient object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMdmCommandRequest instantiates a new MdmCommandRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMdmCommandRequestWithDefaults instantiates a new MdmCommandRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMdmCommandStateFromValue returns a pointer to a valid MdmCommandState for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewMdmCommandTypeFromValue returns a pointer to a valid MdmCommandType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewMdmCommandWithDefaults instantiates a new MdmCommand object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMdmSigningCertificate instantiates a new MdmSigningCertificate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMdmSigningCertificateWithDefaults instantiates a new MdmSigningCertificate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMembershipMappings instantiates a new MembershipMappings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMembershipMappingsWithDefaults instantiates a new MembershipMappings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMembershipTestSearchRequest instantiates a new MembershipTestSearchRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMembershipTestSearchRequestWithDefaults instantiates a new MembershipTestSearchRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMembershipTestSearchResponse instantiates a new MembershipTestSearchResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMembershipTestSearchResponseWithDefaults instantiates a new MembershipTestSearchResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMemcachedEndpoints instantiates a new MemcachedEndpoints object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMemcachedEndpointsWithDefaults instantiates a new MemcachedEndpoints object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDevice instantiates a new MobileDevice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceApplication instantiates a new MobileDeviceApplication object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceApplicationWithDefaults instantiates a new MobileDeviceApplication object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceAttachment instantiates a new MobileDeviceAttachment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceAttachmentV2 instantiates a new MobileDeviceAttachmentV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceAttachmentV2WithDefaults instantiates a new MobileDeviceAttachmentV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceAttachmentWithDefaults instantiates a new MobileDeviceAttachment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceCertificateV1 instantiates a new MobileDeviceCertificateV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceCertificateV1WithDefaults instantiates a new MobileDeviceCertificateV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceCertificateV2 instantiates a new MobileDeviceCertificateV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceCertificateV2WithDefaults instantiates a new MobileDeviceCertificateV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceDetails instantiates a new MobileDeviceDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceDetailsGetV2 instantiates a new MobileDeviceDetailsGetV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceDetailsGetV2AllOf instantiates a new MobileDeviceDetailsGetV2AllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceDetailsGetV2AllOfWithDefaults instantiates a new MobileDeviceDetailsGetV2AllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceDetailsGetV2WithDefaults instantiates a new MobileDeviceDetailsGetV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceDetailsV2 instantiates a new MobileDeviceDetailsV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceDetailsV2WithDefaults instantiates a new MobileDeviceDetailsV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceDetailsWithDefaults instantiates a new MobileDeviceDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceEbook instantiates a new MobileDeviceEbook object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceEbookWithDefaults instantiates a new MobileDeviceEbook object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceExtensionAttributeResults instantiates a new MobileDeviceExtensionAttributeResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceExtensionAttributeResultsExtensionAttributesInner instantiates a new MobileDeviceExtensionAttributeResultsExtensionAttributesInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceExtensionAttributeResultsExtensionAttributesInnerWithDefaults instantiates a new MobileDeviceExtensionAttributeResultsExtensionAttributesInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceExtensionAttributeResultsWithDefaults instantiates a new MobileDeviceExtensionAttributeResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceGroup instantiates a new MobileDeviceGroup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceGroupWithDefaults instantiates a new MobileDeviceGroup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDevicePrestage instantiates a new MobileDevicePrestage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDevicePrestageAllOf instantiates a new MobileDevicePrestageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDevicePrestageAllOfWithDefaults instantiates a new MobileDevicePrestageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDevicePrestageName instantiates a new MobileDevicePrestageName object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDevicePrestageNames instantiates a new MobileDevicePrestageNames object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDevicePrestageNamesV2 instantiates a new MobileDevicePrestageNamesV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDevicePrestageNamesV2WithDefaults instantiates a new MobileDevicePrestageNamesV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDevicePrestageNamesWithDefaults instantiates a new MobileDevicePrestageNames object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDevicePrestageNameV2 instantiates a new MobileDevicePrestageNameV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDevicePrestageNameV2WithDefaults instantiates a new MobileDevicePrestageNameV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDevicePrestageNameWithDefaults instantiates a new MobileDevicePrestageName object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDevicePrestageSearchResults instantiates a new MobileDevicePrestageSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDevicePrestageSearchResultsV2 instantiates a new MobileDevicePrestageSearchResultsV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDevicePrestageSearchResultsV2WithDefaults instantiates a new MobileDevicePrestageSearchResultsV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDevicePrestageSearchResultsWithDefaults instantiates a new MobileDevicePrestageSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDevicePrestageV2 instantiates a new MobileDevicePrestageV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDevicePrestageV2AllOf instantiates a new MobileDevicePrestageV2AllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDevicePrestageV2AllOfWithDefaults instantiates a new MobileDevicePrestageV2AllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDevicePrestageV2WithDefaults instantiates a new MobileDevicePrestageV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDevicePrestageWithDefaults instantiates a new MobileDevicePrestage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceSearchParams instantiates a new MobileDeviceSearchParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceSearchParamsWithDefaults instantiates a new MobileDeviceSearchParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceSearchResults instantiates a new MobileDeviceSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceSearchResultsV2 instantiates a new MobileDeviceSearchResultsV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceSearchResultsV2WithDefaults instantiates a new MobileDeviceSearchResultsV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceSearchResultsWithDefaults instantiates a new MobileDeviceSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceV2 instantiates a new MobileDeviceV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMobileDeviceV2WithDefaults instantiates a new MobileDeviceV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMobileDeviceWithDefaults instantiates a new MobileDevice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetwork instantiates a new Network object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkV2 instantiates a new NetworkV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkV2WithDefaults instantiates a new NetworkV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkWithDefaults instantiates a new Network object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNotification instantiates a new Notification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNotificationTypeFromValue returns a pointer to a valid NotificationType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewNotificationV1 instantiates a new NotificationV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNotificationV1WithDefaults instantiates a new NotificationV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNotificationWithDefaults instantiates a new Notification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewObjectHistory instantiates a new ObjectHistory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObjectHistoryNote instantiates a new ObjectHistoryNote object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObjectHistoryNoteWithDefaults instantiates a new ObjectHistoryNote object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObjectHistoryV1 instantiates a new ObjectHistoryV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObjectHistoryV1WithDefaults instantiates a new ObjectHistoryV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObjectHistoryWithDefaults instantiates a new ObjectHistory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOrderBy instantiates a new OrderBy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOrderByWithDefaults instantiates a new OrderBy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPackageManifest instantiates a new PackageManifest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPackageManifestWithDefaults instantiates a new PackageManifest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewParentApp instantiates a new ParentApp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewParentAppRestrictedTimes instantiates a new ParentAppRestrictedTimes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewParentAppRestrictedTimesWithDefaults instantiates a new ParentAppRestrictedTimes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewParentAppWithDefaults instantiates a new ParentApp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPatchPolicyAttempt instantiates a new PatchPolicyAttempt object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPatchPolicyAttemptAction instantiates a new PatchPolicyAttemptAction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPatchPolicyAttemptActionWithDefaults instantiates a new PatchPolicyAttemptAction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPatchPolicyAttemptWithDefaults instantiates a new PatchPolicyAttempt object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPatchPolicyLog instantiates a new PatchPolicyLog object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPatchPolicyLogSearchResults instantiates a new PatchPolicyLogSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPatchPolicyLogSearchResultsWithDefaults instantiates a new PatchPolicyLogSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPatchPolicyLogWithDefaults instantiates a new PatchPolicyLog object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPatchPolicyOnDashboard instantiates a new PatchPolicyOnDashboard object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPatchPolicyOnDashboardWithDefaults instantiates a new PatchPolicyOnDashboard object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPatchPolicySummary instantiates a new PatchPolicySummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPatchPolicySummaryWithDefaults instantiates a new PatchPolicySummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPatchVersion instantiates a new PatchVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPatchVersionWithDefaults instantiates a new PatchVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPersonalHotspotSettingFromValue returns a pointer to a valid PersonalHotspotSetting for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewPlanSearchResults instantiates a new PlanSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPlanSearchResultsWithDefaults instantiates a new PlanSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPluginPath instantiates a new PluginPath object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPluginPathWithDefaults instantiates a new PluginPath object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPolicyProperties instantiates a new PolicyProperties object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolicyPropertiesV1 instantiates a new PolicyPropertiesV1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolicyPropertiesV1WithDefaults instantiates a new PolicyPropertiesV1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPolicyPropertiesWithDefaults instantiates a new PolicyProperties object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPostComputerPrestageV2 instantiates a new PostComputerPrestageV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPostComputerPrestageV2AllOf instantiates a new PostComputerPrestageV2AllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPostComputerPrestageV2AllOfWithDefaults instantiates a new PostComputerPrestageV2AllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPostComputerPrestageV2WithDefaults instantiates a new PostComputerPrestageV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestageDependencies instantiates a new PrestageDependencies object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestageDependenciesWithDefaults instantiates a new PrestageDependencies object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestageDependency instantiates a new PrestageDependency object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestageDependencyWithDefaults instantiates a new PrestageDependency object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestageFileAttachment instantiates a new PrestageFileAttachment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestageFileAttachmentV2 instantiates a new PrestageFileAttachmentV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestageFileAttachmentV2WithDefaults instantiates a new PrestageFileAttachmentV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestageFileAttachmentWithDefaults instantiates a new PrestageFileAttachment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestagePurchasingInformation instantiates a new PrestagePurchasingInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestagePurchasingInformationV2 instantiates a new PrestagePurchasingInformationV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestagePurchasingInformationV2WithDefaults instantiates a new PrestagePurchasingInformationV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestagePurchasingInformationWithDefaults instantiates a new PrestagePurchasingInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestageScope instantiates a new PrestageScope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestageScopeAssignment instantiates a new PrestageScopeAssignment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestageScopeAssignmentV2 instantiates a new PrestageScopeAssignmentV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestageScopeAssignmentV2WithDefaults instantiates a new PrestageScopeAssignmentV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestageScopeAssignmentWithDefaults instantiates a new PrestageScopeAssignment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestageScopeResponse instantiates a new PrestageScopeResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestageScopeResponseV2 instantiates a new PrestageScopeResponseV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestageScopeResponseV2WithDefaults instantiates a new PrestageScopeResponseV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestageScopeResponseWithDefaults instantiates a new PrestageScopeResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestageScopeUpdate instantiates a new PrestageScopeUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestageScopeUpdateWithDefaults instantiates a new PrestageScopeUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestageScopeV2 instantiates a new PrestageScopeV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestageScopeV2WithDefaults instantiates a new PrestageScopeV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestageScopeWithDefaults instantiates a new PrestageScope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestageSyncStatus instantiates a new PrestageSyncStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestageSyncStatusV2 instantiates a new PrestageSyncStatusV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrestageSyncStatusV2WithDefaults instantiates a new PrestageSyncStatusV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPrestageSyncStatusWithDefaults instantiates a new PrestageSyncStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProcessTextsSearchResults instantiates a new ProcessTextsSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProcessTextsSearchResultsWithDefaults instantiates a new ProcessTextsSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProtectRegistrationRequest instantiates a new ProtectRegistrationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProtectRegistrationRequestWithDefaults instantiates a new ProtectRegistrationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProtectSettingsResponse instantiates a new ProtectSettingsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProtectSettingsResponseWithDefaults instantiates a new ProtectSettingsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProtectUpdatableSettingsRequest instantiates a new ProtectUpdatableSettingsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProtectUpdatableSettingsRequestWithDefaults instantiates a new ProtectUpdatableSettingsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProvisioningProfile instantiates a new ProvisioningProfile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProvisioningProfileWithDefaults instantiates a new ProvisioningProfile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPurchasing instantiates a new Purchasing object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPurchasingV2 instantiates a new PurchasingV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPurchasingV2WithDefaults instantiates a new PurchasingV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPurchasingWithDefaults instantiates a new Purchasing object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPutComputerPrestage instantiates a new PutComputerPrestage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPutComputerPrestageAllOf instantiates a new PutComputerPrestageAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPutComputerPrestageAllOfWithDefaults instantiates a new PutComputerPrestageAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPutComputerPrestageV2 instantiates a new PutComputerPrestageV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPutComputerPrestageV2AllOf instantiates a new PutComputerPrestageV2AllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPutComputerPrestageV2AllOfWithDefaults instantiates a new PutComputerPrestageV2AllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPutComputerPrestageV2WithDefaults instantiates a new PutComputerPrestageV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPutComputerPrestageWithDefaults instantiates a new PutComputerPrestage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPutMobileDevicePrestage instantiates a new PutMobileDevicePrestage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPutMobileDevicePrestageV2 instantiates a new PutMobileDevicePrestageV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPutMobileDevicePrestageV2WithDefaults instantiates a new PutMobileDevicePrestageV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPutMobileDevicePrestageWithDefaults instantiates a new PutMobileDevicePrestage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRecalculationResults instantiates a new RecalculationResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRecalculationResultsWithDefaults instantiates a new RecalculationResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRecipient instantiates a new Recipient object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRecipients instantiates a new Recipients object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRecipientsWithDefaults instantiates a new Recipients object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRecipientWithDefaults instantiates a new Recipient object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRedeployJamfManagementFrameworkResponse instantiates a new RedeployJamfManagementFrameworkResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRedeployJamfManagementFrameworkResponseWithDefaults instantiates a new RedeployJamfManagementFrameworkResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReenrollment instantiates a new Reenrollment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReenrollmentWithDefaults instantiates a new Reenrollment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRemoteAdministrationResponse instantiates a new RemoteAdministrationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRemoteAdministrationResponseWithDefaults instantiates a new RemoteAdministrationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRemoteAdministrationSearchResults instantiates a new RemoteAdministrationSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRemoteAdministrationSearchResultsWithDefaults instantiates a new RemoteAdministrationSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRenewMdmProfileResponse instantiates a new RenewMdmProfileResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRenewMdmProfileResponseWithDefaults instantiates a new RenewMdmProfileResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRestartDeviceCommand instantiates a new RestartDeviceCommand object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRestartDeviceCommandWithDefaults instantiates a new RestartDeviceCommand object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRetryPatchPolicyParams instantiates a new RetryPatchPolicyParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRetryPatchPolicyParamsWithDefaults instantiates a new RetryPatchPolicyParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSafelistedAppsInner instantiates a new SafelistedAppsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSafelistedAppsInnerWithDefaults instantiates a new SafelistedAppsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScript instantiates a new Script object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScriptsSearchResults instantiates a new ScriptsSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScriptsSearchResultsWithDefaults instantiates a new ScriptsSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScriptWithDefaults instantiates a new Script object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSearchActivePatchHistoryParams instantiates a new SearchActivePatchHistoryParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSearchActivePatchHistoryParamsWithDefaults instantiates a new SearchActivePatchHistoryParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSearchPatchPolicyLogParams instantiates a new SearchPatchPolicyLogParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSearchPatchPolicyLogParamsWithDefaults instantiates a new SearchPatchPolicyLogParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurity instantiates a new Security object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityV2 instantiates a new SecurityV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityV2WithDefaults instantiates a new SecurityV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityWithDefaults instantiates a new Security object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSelfServiceInstallSettings instantiates a new SelfServiceInstallSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSelfServiceInstallSettingsWithDefaults instantiates a new SelfServiceInstallSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSelfServiceInteractionSettings instantiates a new SelfServiceInteractionSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSelfServiceInteractionSettingsWithDefaults instantiates a new SelfServiceInteractionSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSelfServiceLoginSettings instantiates a new SelfServiceLoginSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSelfServiceLoginSettingsWithDefaults instantiates a new SelfServiceLoginSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSelfServiceSettings instantiates a new SelfServiceSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSelfServiceSettingsWithDefaults instantiates a new SelfServiceSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSession instantiates a new Session object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSessionCandidateRequest instantiates a new SessionCandidateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSessionCandidateRequestWithDefaults instantiates a new SessionCandidateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSessionDetails instantiates a new SessionDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSessionDetailsSearchResults instantiates a new SessionDetailsSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSessionDetailsSearchResultsWithDefaults instantiates a new SessionDetailsSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSessionDetailsWithDefaults instantiates a new SessionDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSessionStatus instantiates a new SessionStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSessionStatusWithDefaults instantiates a new SessionStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSessionWithDefaults instantiates a new Session object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSetRecoveryLockCommand instantiates a new SetRecoveryLockCommand object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSetRecoveryLockCommandWithDefaults instantiates a new SetRecoveryLockCommand object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSettingsCommand instantiates a new SettingsCommand object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSettingsCommandWithDefaults instantiates a new SettingsCommand object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSharedDeviceConfiguration instantiates a new SharedDeviceConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSharedDeviceConfigurationWithDefaults instantiates a new SharedDeviceConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSignature instantiates a new Signature object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSignatureWithDefaults instantiates a new Signature object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSite instantiates a new Site object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSiteWithDefaults instantiates a new Site object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmartSearchCriterion instantiates a new SmartSearchCriterion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmartSearchCriterionWithDefaults instantiates a new SmartSearchCriterion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSoftwareTitleConfiguration instantiates a new SoftwareTitleConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSoftwareTitleConfigurationWithDefaults instantiates a new SoftwareTitleConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSoftwareTitlePatchPolicySummaries instantiates a new SoftwareTitlePatchPolicySummaries object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSoftwareTitlePatchPolicySummariesWithDefaults instantiates a new SoftwareTitlePatchPolicySummaries object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSoftwareUpdateSettings instantiates a new SoftwareUpdateSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSoftwareUpdateSettingsWithDefaults instantiates a new SoftwareUpdateSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoKeystore instantiates a new SsoKeystore object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoKeystoreAllOf instantiates a new SsoKeystoreAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoKeystoreAllOfWithDefaults instantiates a new SsoKeystoreAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoKeystoreCertParseResponse instantiates a new SsoKeystoreCertParseResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoKeystoreCertParseResponseWithDefaults instantiates a new SsoKeystoreCertParseResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoKeystoreDetails instantiates a new SsoKeystoreDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoKeystoreDetailsWithDefaults instantiates a new SsoKeystoreDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoKeystoreParse instantiates a new SsoKeystoreParse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoKeystoreParseWithDefaults instantiates a new SsoKeystoreParse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoKeystoreResponse instantiates a new SsoKeystoreResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoKeystoreResponseWithDefaults instantiates a new SsoKeystoreResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoKeystoreResponseWithDetails instantiates a new SsoKeystoreResponseWithDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoKeystoreResponseWithDetailsWithDefaults instantiates a new SsoKeystoreResponseWithDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoKeystoreWithDefaults instantiates a new SsoKeystore object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoKeystoreWithDetails instantiates a new SsoKeystoreWithDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoKeystoreWithDetailsWithDefaults instantiates a new SsoKeystoreWithDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoMetadataUrl instantiates a new SsoMetadataUrl object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoMetadataUrlWithDefaults instantiates a new SsoMetadataUrl object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsoSettings instantiates a new SsoSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsoSettingsWithDefaults instantiates a new SsoSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStartupStatus instantiates a new StartupStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStartupStatusWithDefaults instantiates a new StartupStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStaticUserGroup instantiates a new StaticUserGroup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStaticUserGroupWithDefaults instantiates a new StaticUserGroup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSupervisionIdentity instantiates a new SupervisionIdentity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSupervisionIdentityCertificateUpload instantiates a new SupervisionIdentityCertificateUpload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSupervisionIdentityCertificateUploadWithDefaults instantiates a new SupervisionIdentityCertificateUpload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSupervisionIdentityCreate instantiates a new SupervisionIdentityCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSupervisionIdentityCreateWithDefaults instantiates a new SupervisionIdentityCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSupervisionIdentitySearchResults instantiates a new SupervisionIdentitySearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSupervisionIdentitySearchResultsWithDefaults instantiates a new SupervisionIdentitySearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSupervisionIdentityUpdate instantiates a new SupervisionIdentityUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSupervisionIdentityUpdateWithDefaults instantiates a new SupervisionIdentityUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSupervisionIdentityWithDefaults instantiates a new SupervisionIdentity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTeacherFeatures instantiates a new TeacherFeatures object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTeacherFeaturesWithDefaults instantiates a new TeacherFeatures object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTeacherSettingsRequest instantiates a new TeacherSettingsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTeacherSettingsRequestWithDefaults instantiates a new TeacherSettingsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTeacherSettingsResponse instantiates a new TeacherSettingsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTeacherSettingsResponseWithDefaults instantiates a new TeacherSettingsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTimeFrame instantiates a new TimeFrame object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTimeFrameWithDefaults instantiates a new TimeFrame object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTimeZone instantiates a new TimeZone object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTimeZoneWithDefaults instantiates a new TimeZone object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTvOsDetails instantiates a new TvOsDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTvOsDetailsWithDefaults instantiates a new TvOsDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUdids instantiates a new Udids object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUdidsWithDefaults instantiates a new Udids object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAppleTv instantiates a new UpdateAppleTv object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAppleTvWithDefaults instantiates a new UpdateAppleTv object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateIos instantiates a new UpdateIos object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateIosV2 instantiates a new UpdateIosV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateIosV2WithDefaults instantiates a new UpdateIosV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateIosWithDefaults instantiates a new UpdateIos object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateMobileDevice instantiates a new UpdateMobileDevice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateMobileDeviceV2 instantiates a new UpdateMobileDeviceV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateMobileDeviceV2WithDefaults instantiates a new UpdateMobileDeviceV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateMobileDeviceWithDefaults instantiates a new UpdateMobileDevice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateTvOs instantiates a new UpdateTvOs object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateTvOsWithDefaults instantiates a new UpdateTvOs object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserAttributes instantiates a new UserAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserAttributesWithDefaults instantiates a new UserAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserMappings instantiates a new UserMappings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserMappingsWithDefaults instantiates a new UserMappings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserTestSearch instantiates a new UserTestSearch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserTestSearchRequest instantiates a new UserTestSearchRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserTestSearchRequestWithDefaults instantiates a new UserTestSearchRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserTestSearchResponse instantiates a new UserTestSearchResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserTestSearchResponseWithDefaults instantiates a new UserTestSearchResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserTestSearchWithDefaults instantiates a new UserTestSearch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewV1Site instantiates a new V1Site object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewV1SiteWithDefaults instantiates a new V1Site object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVenafiCaRecord instantiates a new VenafiCaRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVenafiCaRecordWithDefaults instantiates a new VenafiCaRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVenafiPkiPayloadRecord instantiates a new VenafiPkiPayloadRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVenafiPkiPayloadRecordSearchResults instantiates a new VenafiPkiPayloadRecordSearchResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVenafiPkiPayloadRecordSearchResultsWithDefaults instantiates a new VenafiPkiPayloadRecordSearchResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVenafiPkiPayloadRecordWithDefaults instantiates a new VenafiPkiPayloadRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVenafiServiceStatus instantiates a new VenafiServiceStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVenafiServiceStatusWithDefaults instantiates a new VenafiServiceStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVerbosePackageDeploymentResponse instantiates a new VerbosePackageDeploymentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVerbosePackageDeploymentResponseErrorsInner instantiates a new VerbosePackageDeploymentResponseErrorsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVerbosePackageDeploymentResponseErrorsInnerWithDefaults instantiates a new VerbosePackageDeploymentResponseErrorsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVerbosePackageDeploymentResponseQueuedCommandsInner instantiates a new VerbosePackageDeploymentResponseQueuedCommandsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVerbosePackageDeploymentResponseQueuedCommandsInnerWithDefaults instantiates a new VerbosePackageDeploymentResponseQueuedCommandsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVerbosePackageDeploymentResponseWithDefaults instantiates a new VerbosePackageDeploymentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVoiceRoamingSettingFromValue returns a pointer to a valid VoiceRoamingSetting for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewVolumePurchasingContent instantiates a new VolumePurchasingContent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVolumePurchasingContentWithDefaults instantiates a new VolumePurchasingContent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVolumePurchasingLocation instantiates a new VolumePurchasingLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVolumePurchasingLocationAllOf instantiates a new VolumePurchasingLocationAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVolumePurchasingLocationAllOfWithDefaults instantiates a new VolumePurchasingLocationAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVolumePurchasingLocationListView instantiates a new VolumePurchasingLocationListView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVolumePurchasingLocationListViewWithDefaults instantiates a new VolumePurchasingLocationListView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVolumePurchasingLocationPatch instantiates a new VolumePurchasingLocationPatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVolumePurchasingLocationPatchWithDefaults instantiates a new VolumePurchasingLocationPatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVolumePurchasingLocationPost instantiates a new VolumePurchasingLocationPost object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVolumePurchasingLocationPostWithDefaults instantiates a new VolumePurchasingLocationPost object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVolumePurchasingLocations instantiates a new VolumePurchasingLocations object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVolumePurchasingLocationsWithDefaults instantiates a new VolumePurchasingLocations object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVolumePurchasingLocationWithDefaults instantiates a new VolumePurchasingLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVolumePurchasingSubscription instantiates a new VolumePurchasingSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVolumePurchasingSubscriptionAllOf instantiates a new VolumePurchasingSubscriptionAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVolumePurchasingSubscriptionAllOfWithDefaults instantiates a new VolumePurchasingSubscriptionAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVolumePurchasingSubscriptionBase instantiates a new VolumePurchasingSubscriptionBase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVolumePurchasingSubscriptionBaseWithDefaults instantiates a new VolumePurchasingSubscriptionBase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVolumePurchasingSubscriptions instantiates a new VolumePurchasingSubscriptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVolumePurchasingSubscriptionsWithDefaults instantiates a new VolumePurchasingSubscriptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVolumePurchasingSubscriptionWithDefaults instantiates a new VolumePurchasingSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVppAdminAccount instantiates a new VppAdminAccount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVppAdminAccountWithDefaults instantiates a new VppAdminAccount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVppTokenSubscription instantiates a new VppTokenSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVppTokenSubscriptionWithDefaults instantiates a new VppTokenSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWebLink instantiates a new WebLink object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWebLinkWithDefaults instantiates a new WebLink object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.
RestartDeviceCommandAsMdmCommandRequestCommandData is a convenience function that returns RestartDeviceCommand wrapped in MdmCommandRequestCommandData.
SetRecoveryLockCommandAsMdmCommandRequestCommandData is a convenience function that returns SetRecoveryLockCommand wrapped in MdmCommandRequestCommandData.
SettingsCommandAsMdmCommandRequestCommandData is a convenience function that returns SettingsCommand wrapped in MdmCommandRequestCommandData.

# Constants

List of AppAnalyticsSetting.
List of AppAnalyticsSetting.
List of ComputerPartitionFileVault2State.
List of ComputerPartitionFileVault2State.
List of ComputerPartitionFileVault2State.
List of ComputerPartitionFileVault2State.
List of ComputerPartitionFileVault2State.
List of ComputerPartitionFileVault2State.
List of ComputerPartitionFileVault2State.
List of ComputerPartitionFileVault2State.
List of ComputerPartitionFileVault2State.
List of ComputerPartitionFileVault2State.
List of ComputerPartitionFileVault2State.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of ComputerSection.
List of DataRoamingSetting.
List of DataRoamingSetting.
List of DayOfWeek.
List of DayOfWeek.
List of DayOfWeek.
List of DayOfWeek.
List of DayOfWeek.
List of DayOfWeek.
List of DayOfWeek.
List of DiagnosticSubmissionSetting.
List of DiagnosticSubmissionSetting.
List of MdmClientType.
List of MdmClientType.
List of MdmClientType.
List of MdmClientType.
List of MdmClientType.
List of MdmCommandState.
List of MdmCommandState.
List of MdmCommandState.
List of MdmCommandState.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of MdmCommandType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of NotificationType.
List of PersonalHotspotSetting.
List of PersonalHotspotSetting.
List of VoiceRoamingSetting.
List of VoiceRoamingSetting.

# Variables

All allowed values of AppAnalyticsSetting enum.
All allowed values of ComputerPartitionFileVault2State enum.
All allowed values of ComputerSection enum.
All allowed values of DataRoamingSetting enum.
All allowed values of DayOfWeek enum.
All allowed values of DiagnosticSubmissionSetting enum.
All allowed values of MdmClientType enum.
All allowed values of MdmCommandState enum.
All allowed values of MdmCommandType enum.
All allowed values of NotificationType enum.
All allowed values of PersonalHotspotSetting enum.
All allowed values of VoiceRoamingSetting enum.
ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

AccessGroupsPreviewSearchResults struct for AccessGroupsPreviewSearchResults.
AccessGroupsSearchResults struct for AccessGroupsSearchResults.
AccessGroupsV2SearchResults struct for AccessGroupsV2SearchResults.
Account struct for Account.
AccountGroup struct for AccountGroup.
AccountPreferences struct for AccountPreferences.
AccountPreferencesV1 struct for AccountPreferencesV1.
AccountPreferencesV4 struct for AccountPreferencesV4.
ActivePatchHistory struct for ActivePatchHistory.
ActivePatchHistorySearchResults struct for ActivePatchHistorySearchResults.
ActivePatchSummary struct for ActivePatchSummary.
AdminAccount struct for AdminAccount.
AdvancedSearch struct for AdvancedSearch.
AdvancedSearchCriteriaChoices struct for AdvancedSearchCriteriaChoices.
AdvancedSearchSearchResults struct for AdvancedSearchSearchResults.
AdvancedUserContentSearch struct for AdvancedUserContentSearch.
AdvancedUserContentSearchSearchResults struct for AdvancedUserContentSearchSearchResults.
AndroidDetails will be populated if the type is android.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIClient manages communication with the Jamf Pro API API vproduction In most cases there should be only one, shared, APIClient.
No description provided by the author
ApiError struct for ApiError.
ApiErrorCause struct for ApiErrorCause.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
AppDynamicsConfig Configuration parameters needed for AppDynamics script initialization.
AppleTvDetails will be populated if the type is appleTv.
ApplicationAttributes struct for ApplicationAttributes.
ApplicationConfiguration struct for ApplicationConfiguration.
AppPath struct for AppPath.
AppRequestFormInputField struct for AppRequestFormInputField.
AppRequestFormInputFieldSearchResults struct for AppRequestFormInputFieldSearchResults.
AppRequestSettings struct for AppRequestSettings.
AssignRemoveProfileResponseSyncState struct for AssignRemoveProfileResponseSyncState.
Attributes struct for Attributes.
AuthAccount struct for AuthAccount.
AuthAccountV1 struct for AuthAccountV1.
Authorization struct for Authorization.
AuthorizationV1 struct for AuthorizationV1.
AuthToken struct for AuthToken.
AuthTokenV1 struct for AuthTokenV1.
AvailableUpdates struct for AvailableUpdates.
AzureAdMigrationReportProcessStatus Request that start report generation.
AzureAdMigrationReportRequest Request that start report generation.
AzureConfiguration A Cloud Identity Provider Azure configuration for responses.
AzureConfigurationRequest A Cloud Identity Provider Azure configuration for responses.
AzureConfigurationUpdate A Cloud Identity Provider Azure configuration for update.
AzureMappings Azure Cloud Identity Provider mappings.
AzureServerConfiguration Azure Cloud Identity Provider configuration.
AzureServerConfigurationRequest Azure Cloud Identity Provider configuration request.
AzureServerConfigurationUpdate Azure Cloud Identity Provider configuration update.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
BrandingImageUrl struct for BrandingImageUrl.
Building struct for Building.
BuildingSearchResults struct for BuildingSearchResults.
CacheSettings struct for CacheSettings.
CategoriesSearchResults struct for CategoriesSearchResults.
Category struct for Category.
CertificateDetails struct for CertificateDetails.
CertificateIdentityV1 struct for CertificateIdentityV1.
CertificateIdentityV2 struct for CertificateIdentityV2.
CertificateKey struct for CertificateKey.
CertificateRecord struct for CertificateRecord.
ClassicLdapMappings Classic Ldap mappings configuration.
ClientCheckInV2 struct for ClientCheckInV2.
ClientCheckInV3 struct for ClientCheckInV3.
CloudIdPCommon A Cloud Identity Provider information.
CloudIdPCommonRequest A Cloud Identity Provider information for request.
CloudIdPCommonResponse A Cloud Identity Provider information for responses.
CloudLdapConnectionPoolStatistics Ldap Cloud Identity Provider conection pool statistics.
CloudLdapConnectionStatus Status of tested Cloud Ldap connection.
CloudLdapKeystore Response with keystore information.
CloudLdapKeystoreFile Request with the Base64-encoded keystore file.
CloudLdapMappingsRequest Mappings configurations request for Ldap Cloud Identity Provider configuration.
CloudLdapMappingsResponse Mappings configuration response for Ldap Cloud Identity Provider configuration.
CloudLdapServerRequest A Cloud Identity Provider LDAP server configuration for requests.
CloudLdapServerResponse A Cloud Identity Provider LDAP server configuration for responses.
CloudLdapServerUpdate A Cloud Identity Provider LDAP server configuration for updates.
ComputerApplication struct for ComputerApplication.
ComputerAttachment struct for ComputerAttachment.
ComputerCertificate struct for ComputerCertificate.
ComputerConfigurationProfile struct for ComputerConfigurationProfile.
ComputerContentCaching struct for ComputerContentCaching.
ComputerContentCachingAlert struct for ComputerContentCachingAlert.
ComputerContentCachingCacheDetail struct for ComputerContentCachingCacheDetail.
ComputerContentCachingDataMigrationError struct for ComputerContentCachingDataMigrationError.
ComputerContentCachingDataMigrationErrorUserInfo struct for ComputerContentCachingDataMigrationErrorUserInfo.
ComputerContentCachingParent struct for ComputerContentCachingParent.
ComputerContentCachingParentAlert struct for ComputerContentCachingParentAlert.
ComputerContentCachingParentCapabilities struct for ComputerContentCachingParentCapabilities.
ComputerContentCachingParentDetails struct for ComputerContentCachingParentDetails.
ComputerContentCachingParentLocalNetwork struct for ComputerContentCachingParentLocalNetwork.
ComputerDisk struct for ComputerDisk.
ComputerDiskEncryption struct for ComputerDiskEncryption.
ComputerExtensionAttribute struct for ComputerExtensionAttribute.
ComputerFont struct for ComputerFont.
ComputerGeneral struct for ComputerGeneral.
ComputerGeneralUpdate struct for ComputerGeneralUpdate.
ComputerHardware struct for ComputerHardware.
ComputerHardwareUpdate struct for ComputerHardwareUpdate.
ComputerIbeacon struct for ComputerIbeacon.
ComputerInventoryCollectionPreferences struct for ComputerInventoryCollectionPreferences.
ComputerInventoryCollectionSettings struct for ComputerInventoryCollectionSettings.
ComputerInventoryRecoveryLockPasswordResponse struct for ComputerInventoryRecoveryLockPasswordResponse.
ComputerInventoryResponse struct for ComputerInventoryResponse.
ComputerInventorySearchResults struct for ComputerInventorySearchResults.
ComputerInventoryUpdateRequest struct for ComputerInventoryUpdateRequest.
ComputerLicensedSoftware struct for ComputerLicensedSoftware.
ComputerLocalUserAccount struct for ComputerLocalUserAccount.
ComputerLocation struct for ComputerLocation.
ComputerMdmCapability struct for ComputerMdmCapability.
ComputerOperatingSystem struct for ComputerOperatingSystem.
ComputerOperatingSystemUpdate struct for ComputerOperatingSystemUpdate.
ComputerOverview struct for ComputerOverview.
ComputerPackageReceipts All package receipts are listed by their package name.
ComputerPartition struct for ComputerPartition.
ComputerPartitionEncryption struct for ComputerPartitionEncryption.
ComputerPlugin struct for ComputerPlugin.
ComputerPrestage struct for ComputerPrestage.
ComputerPrestageAllOf struct for ComputerPrestageAllOf.
ComputerPrestageSearchResults struct for ComputerPrestageSearchResults.
ComputerPrestageSearchResultsV2 struct for ComputerPrestageSearchResultsV2.
ComputerPrestageV2 struct for ComputerPrestageV2.
ComputerPrestageV2AllOf struct for ComputerPrestageV2AllOf.
ComputerPrinter struct for ComputerPrinter.
ComputerPurchase struct for ComputerPurchase.
ComputerRemoteManagement struct for ComputerRemoteManagement.
ComputerSecurity struct for ComputerSecurity.
ComputerService struct for ComputerService.
ComputerSoftwareUpdate struct for ComputerSoftwareUpdate.
ComputersSearchResults struct for ComputersSearchResults.
ComputerStorage struct for ComputerStorage.
ComputerUserAndLocation struct for ComputerUserAndLocation.
Configuration stores the configuration of the API client.
ConfigurationProfile struct for ConfigurationProfile.
ConfigurationSearchResults A list with Cloud Identity Providers informations about configurations.
ConnectionConfigurationCandidateRequest Request that creates configuration and initialize connection between Jamf Pro and Team Viewer.
ConnectionConfigurationResponse Response that contains information about connection configuration for Team Viewer.
ConnectionConfigurationStatusResponse Response that contains connection configuration status for Team Viewer.
ConnectionConfigurationUpdateRequest Request that updates configuration connection between Jamf Pro and Team Viewer.
Country struct for Country.
CountryCodes struct for CountryCodes.
CreatePath struct for CreatePath.
CsaToken struct for CsaToken.
CurrentAccount struct for CurrentAccount.
CurrentAuthorization struct for CurrentAuthorization.
DatabasePassword struct for DatabasePassword.
DeleteUserCommand struct for DeleteUserCommand.
Department struct for Department.
DepartmentsSearchResults struct for DepartmentsSearchResults.
DeploymentTask struct for DeploymentTask.
DeploymentTaskSearchResults struct for DeploymentTaskSearchResults.
DeprecatedConfigurationRequest An old Cloud Identity Provider configuration for requests.
DeprecatedConfigurationResponse An old Cloud Identity Provider configuration for responses.
DeprecatedConfigurationSearchResults A list with old Cloud Identity Providers configurations.
DeprecatedConfigurationUpdate An old Cloud Identity Provider configuration for updates.
DeprecatedServerRequest An old Cloud Identity Provider LDAP server configuration for requests.
DeprecatedServerResponse An old Cloud Identity Provider LDAP server configuration for responses.
DeprecatedServerUpdate An old Cloud Identity Provider LDAP server configuration for updates.
DeviceCommunicationSettings struct for DeviceCommunicationSettings.
DeviceComplianceInformation Device compliance information record.
DeviceEnrollmentDevice struct for DeviceEnrollmentDevice.
DeviceEnrollmentDeviceSearchResults struct for DeviceEnrollmentDeviceSearchResults.
DeviceEnrollmentDisownBody struct for DeviceEnrollmentDisownBody.
DeviceEnrollmentDisownResponse struct for DeviceEnrollmentDisownResponse.
DeviceEnrollmentInstance struct for DeviceEnrollmentInstance.
DeviceEnrollmentInstanceSearchResults struct for DeviceEnrollmentInstanceSearchResults.
DeviceEnrollmentInstanceSyncStatus struct for DeviceEnrollmentInstanceSyncStatus.
DeviceEnrollmentPrestage struct for DeviceEnrollmentPrestage.
DeviceEnrollmentPrestageV2 struct for DeviceEnrollmentPrestageV2.
DeviceEnrollmentToken struct for DeviceEnrollmentToken.
Ebook struct for Ebook.
EbookExclusions struct for EbookExclusions.
EbookLimitations struct for EbookLimitations.
EbookLimitationsUsersInner struct for EbookLimitationsUsersInner.
EbookScope struct for EbookScope.
EbookSearchResults struct for EbookSearchResults.
EnableLostModeCommand struct for EnableLostModeCommand.
Engage struct for Engage.
EnrollmentAccessGroup struct for EnrollmentAccessGroup.
EnrollmentAccessGroupPreview struct for EnrollmentAccessGroupPreview.
EnrollmentAccessGroupV2 struct for EnrollmentAccessGroupV2.
EnrollmentCustomization struct for EnrollmentCustomization.
EnrollmentCustomizationBrandingSettings struct for EnrollmentCustomizationBrandingSettings.
EnrollmentCustomizationDependencies struct for EnrollmentCustomizationDependencies.
EnrollmentCustomizationDependency struct for EnrollmentCustomizationDependency.
EnrollmentCustomizationLdapGroupAccess struct for EnrollmentCustomizationLdapGroupAccess.
EnrollmentCustomizationPanel struct for EnrollmentCustomizationPanel.
EnrollmentCustomizationPanelLdapAuth struct for EnrollmentCustomizationPanelLdapAuth.
EnrollmentCustomizationPanelLdapAuthAllOf struct for EnrollmentCustomizationPanelLdapAuthAllOf.
EnrollmentCustomizationPanelList struct for EnrollmentCustomizationPanelList.
EnrollmentCustomizationPanelSsoAuth struct for EnrollmentCustomizationPanelSsoAuth.
EnrollmentCustomizationPanelSsoAuthAllOf struct for EnrollmentCustomizationPanelSsoAuthAllOf.
EnrollmentCustomizationPanelText struct for EnrollmentCustomizationPanelText.
EnrollmentCustomizationPanelTextAllOf struct for EnrollmentCustomizationPanelTextAllOf.
EnrollmentCustomizationSearchResults struct for EnrollmentCustomizationSearchResults.
EnrollmentCustomizationSearchResultsV2 struct for EnrollmentCustomizationSearchResultsV2.
EnrollmentCustomizationV2 struct for EnrollmentCustomizationV2.
EnrollmentMethod struct for EnrollmentMethod.
EnrollmentProcessTextObject struct for EnrollmentProcessTextObject.
EnrollmentSettings struct for EnrollmentSettings.
EnrollmentSettingsV2 struct for EnrollmentSettingsV2.
ExportField Field to be included in the export operation.
ExportParameters struct for ExportParameters.
ExtensionAttribute struct for ExtensionAttribute.
ExtensionAttributeV2 struct for ExtensionAttributeV2.
ExternalRecipient struct for ExternalRecipient.
FileAttachment struct for FileAttachment.
FileAttachmentDelete struct for FileAttachmentDelete.
FileAttachmentV2 struct for FileAttachmentV2.
Filter struct for Filter.
FontPath struct for FontPath.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GetComputerPrestage struct for GetComputerPrestage.
GetComputerPrestageAllOf struct for GetComputerPrestageAllOf.
GetComputerPrestageV2 struct for GetComputerPrestageV2.
GetComputerPrestageV2AllOf struct for GetComputerPrestageV2AllOf.
GetEnrollmentCustomization struct for GetEnrollmentCustomization.
GetEnrollmentCustomizationAllOf struct for GetEnrollmentCustomizationAllOf.
GetEnrollmentCustomizationPanel struct for GetEnrollmentCustomizationPanel.
GetEnrollmentCustomizationPanelAllOf struct for GetEnrollmentCustomizationPanelAllOf.
GetEnrollmentCustomizationPanelLdapAuth struct for GetEnrollmentCustomizationPanelLdapAuth.
GetEnrollmentCustomizationPanelLdapAuthAllOf struct for GetEnrollmentCustomizationPanelLdapAuthAllOf.
GetEnrollmentCustomizationPanelSsoAuth struct for GetEnrollmentCustomizationPanelSsoAuth.
GetEnrollmentCustomizationPanelSsoAuthAllOf struct for GetEnrollmentCustomizationPanelSsoAuthAllOf.
GetEnrollmentCustomizationPanelText struct for GetEnrollmentCustomizationPanelText.
GetMobileDevicePrestage struct for GetMobileDevicePrestage.
GetMobileDevicePrestageV2 struct for GetMobileDevicePrestageV2.
GetMobileDevicePrestageV2AllOf struct for GetMobileDevicePrestageV2AllOf.
GroupMappings Cloud Identity Provider user group mappings configuration.
GroupMembership struct for GroupMembership.
GroupTestSearch struct for GroupTestSearch.
GroupTestSearchRequest struct for GroupTestSearchRequest.
GroupTestSearchResponse struct for GroupTestSearchResponse.
HistorySearchResults struct for HistorySearchResults.
HistorySearchResultsV1 struct for HistorySearchResultsV1.
HrefResponse struct for HrefResponse.
IconResponse struct for IconResponse.
IdAndName struct for IdAndName.
IdAndNameV2 struct for IdAndNameV2.
Ids struct for Ids.
Initialize Initial Jamf Pro setup data.
InitializeV1 Initial Jamf Pro setup data.
InstallPackage Either devices or groupId must be provided.
InternalRecipient struct for InternalRecipient.
InventoryInformation Jamf Pro Inventory statistics object.
InventoryPreloadCsvError struct for InventoryPreloadCsvError.
InventoryPreloadCsvValidationError struct for InventoryPreloadCsvValidationError.
InventoryPreloadCsvValidationErrorCause struct for InventoryPreloadCsvValidationErrorCause.
InventoryPreloadCsvValidationErrorCauseAllOf struct for InventoryPreloadCsvValidationErrorCauseAllOf.
InventoryPreloadCsvValidationSuccess struct for InventoryPreloadCsvValidationSuccess.
InventoryPreloadExtensionAttribute struct for InventoryPreloadExtensionAttribute.
InventoryPreloadExtensionAttributeColumn struct for InventoryPreloadExtensionAttributeColumn.
InventoryPreloadExtensionAttributeColumnResult struct for InventoryPreloadExtensionAttributeColumnResult.
InventoryPreloadInvalidCsvResponse struct for InventoryPreloadInvalidCsvResponse.
InventoryPreloadRecord struct for InventoryPreloadRecord.
InventoryPreloadRecordSearchResults struct for InventoryPreloadRecordSearchResults.
InventoryPreloadRecordSearchResultsV2 struct for InventoryPreloadRecordSearchResultsV2.
InventoryPreloadRecordV2 struct for InventoryPreloadRecordV2.
IosBrandingConfiguration struct for IosBrandingConfiguration.
IosBrandingSearchResults struct for IosBrandingSearchResults.
IosDetails will be populated if the type is ios.
IosDetailsV2 will be populated if the type is ios.
JamfApplicationResponse struct for JamfApplicationResponse.
JamfNationCredentials struct for JamfNationCredentials.
JamfPackageResponse struct for JamfPackageResponse.
JamfProInformation struct for JamfProInformation.
JamfProServerUrl struct for JamfProServerUrl.
JamfProtectPlan struct for JamfProtectPlan.
JamfProVersion struct for JamfProVersion.
LanguageCode struct for LanguageCode.
LdapConfigurationRequest A Cloud Identity Provider LDAP configuration for requests.
LdapConfigurationResponse A Cloud Identity Provider LDAP configuration for responses.
LdapConfigurationUpdate A Cloud Identity Provider LDAP configuration for updates.
LdapGroup An LDAP group.
LdapGroupSearchResults struct for LdapGroupSearchResults.
LdapServer An LDAP Server.
LinkedConnectProfile struct for LinkedConnectProfile.
LinkedConnectProfileSearchResults struct for LinkedConnectProfileSearchResults.
Locale struct for Locale.
Location struct for Location.
LocationInformation struct for LocationInformation.
LocationInformationV2 struct for LocationInformationV2.
LocationV2 struct for LocationV2.
LogOutUserCommand struct for LogOutUserCommand.
MacOsBrandingConfiguration struct for MacOsBrandingConfiguration.
MacOsBrandingSearchResults struct for MacOsBrandingSearchResults.
MacOsManagedSoftwareUpdate struct for MacOsManagedSoftwareUpdate.
MacOsManagedSoftwareUpdateResponse struct for MacOsManagedSoftwareUpdateResponse.
Markdown struct for Markdown.
MdmCommand struct for MdmCommand.
MdmCommandClient struct for MdmCommandClient.
MdmCommandRequest struct for MdmCommandRequest.
MdmCommandRequestCommandData - struct for MdmCommandRequestCommandData.
MdmSigningCertificate struct for MdmSigningCertificate.
MembershipMappings Cloud Identity Provider user group membership mappings configuration.
MembershipTestSearchRequest struct for MembershipTestSearchRequest.
MembershipTestSearchResponse struct for MembershipTestSearchResponse.
MemcachedEndpoints struct for MemcachedEndpoints.
MobileDevice struct for MobileDevice.
MobileDeviceApplication struct for MobileDeviceApplication.
MobileDeviceAttachment struct for MobileDeviceAttachment.
MobileDeviceAttachmentV2 struct for MobileDeviceAttachmentV2.
MobileDeviceCertificateV1 struct for MobileDeviceCertificateV1.
MobileDeviceCertificateV2 struct for MobileDeviceCertificateV2.
MobileDeviceDetails struct for MobileDeviceDetails.
MobileDeviceDetailsGetV2 struct for MobileDeviceDetailsGetV2.
MobileDeviceDetailsGetV2AllOf struct for MobileDeviceDetailsGetV2AllOf.
MobileDeviceDetailsV2 struct for MobileDeviceDetailsV2.
MobileDeviceEbook struct for MobileDeviceEbook.
MobileDeviceExtensionAttributeResults struct for MobileDeviceExtensionAttributeResults.
MobileDeviceExtensionAttributeResultsExtensionAttributesInner struct for MobileDeviceExtensionAttributeResultsExtensionAttributesInner.
MobileDeviceGroup struct for MobileDeviceGroup.
MobileDevicePrestage struct for MobileDevicePrestage.
MobileDevicePrestageAllOf struct for MobileDevicePrestageAllOf.
MobileDevicePrestageName struct for MobileDevicePrestageName.
MobileDevicePrestageNames struct for MobileDevicePrestageNames.
MobileDevicePrestageNamesV2 struct for MobileDevicePrestageNamesV2.
MobileDevicePrestageNameV2 struct for MobileDevicePrestageNameV2.
MobileDevicePrestageSearchResults struct for MobileDevicePrestageSearchResults.
MobileDevicePrestageSearchResultsV2 struct for MobileDevicePrestageSearchResultsV2.
MobileDevicePrestageV2 struct for MobileDevicePrestageV2.
MobileDevicePrestageV2AllOf struct for MobileDevicePrestageV2AllOf.
MobileDeviceSearchParams struct for MobileDeviceSearchParams.
MobileDeviceSearchResults struct for MobileDeviceSearchResults.
MobileDeviceSearchResultsV2 struct for MobileDeviceSearchResultsV2.
MobileDeviceV2 struct for MobileDeviceV2.
Network struct for Network.
NetworkV2 struct for NetworkV2.
Notification Jamf Pro notification used for important alerts.
NotificationV1 Jamf Pro notification used for important alerts.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ObjectHistory struct for ObjectHistory.
ObjectHistoryNote struct for ObjectHistoryNote.
ObjectHistoryV1 struct for ObjectHistoryV1.
OrderBy struct for OrderBy.
PackageManifest struct for PackageManifest.
ParentApp struct for ParentApp.
ParentAppRestrictedTimes struct for ParentAppRestrictedTimes.
PatchPolicyAttempt struct for PatchPolicyAttempt.
PatchPolicyAttemptAction struct for PatchPolicyAttemptAction.
PatchPolicyLog struct for PatchPolicyLog.
PatchPolicyLogSearchResults struct for PatchPolicyLogSearchResults.
PatchPolicyOnDashboard struct for PatchPolicyOnDashboard.
PatchPolicySummary struct for PatchPolicySummary.
PatchVersion struct for PatchVersion.
PlanSearchResults struct for PlanSearchResults.
PluginPath struct for PluginPath.
PolicyProperties struct for PolicyProperties.
PolicyPropertiesV1 struct for PolicyPropertiesV1.
PostComputerPrestageV2 struct for PostComputerPrestageV2.
PostComputerPrestageV2AllOf struct for PostComputerPrestageV2AllOf.
PrestageDependencies struct for PrestageDependencies.
PrestageDependency struct for PrestageDependency.
PrestageFileAttachment struct for PrestageFileAttachment.
PrestageFileAttachmentV2 struct for PrestageFileAttachmentV2.
PrestagePurchasingInformation struct for PrestagePurchasingInformation.
PrestagePurchasingInformationV2 struct for PrestagePurchasingInformationV2.
PrestageScope struct for PrestageScope.
PrestageScopeAssignment struct for PrestageScopeAssignment.
PrestageScopeAssignmentV2 struct for PrestageScopeAssignmentV2.
PrestageScopeResponse struct for PrestageScopeResponse.
PrestageScopeResponseV2 struct for PrestageScopeResponseV2.
PrestageScopeUpdate struct for PrestageScopeUpdate.
PrestageScopeV2 struct for PrestageScopeV2.
PrestageSyncStatus struct for PrestageSyncStatus.
PrestageSyncStatusV2 struct for PrestageSyncStatusV2.
ProcessTextsSearchResults struct for ProcessTextsSearchResults.
ProtectRegistrationRequest Create an API Client in the Jamf Protect web console to obtain these values.
ProtectSettingsResponse struct for ProtectSettingsResponse.
ProtectUpdatableSettingsRequest struct for ProtectUpdatableSettingsRequest.
ProvisioningProfile struct for ProvisioningProfile.
Purchasing struct for Purchasing.
PurchasingV2 struct for PurchasingV2.
PutComputerPrestage struct for PutComputerPrestage.
PutComputerPrestageAllOf struct for PutComputerPrestageAllOf.
PutComputerPrestageV2 struct for PutComputerPrestageV2.
PutComputerPrestageV2AllOf struct for PutComputerPrestageV2AllOf.
PutMobileDevicePrestage struct for PutMobileDevicePrestage.
PutMobileDevicePrestageV2 struct for PutMobileDevicePrestageV2.
RecalculationResults struct for RecalculationResults.
Recipient struct for Recipient.
Recipients struct for Recipients.
RedeployJamfManagementFrameworkResponse struct for RedeployJamfManagementFrameworkResponse.
Reenrollment struct for Reenrollment.
RemoteAdministrationResponse A Remote administration response.
RemoteAdministrationSearchResults A list with Remote administration configurations.
RenewMdmProfileResponse struct for RenewMdmProfileResponse.
RestartDeviceCommand struct for RestartDeviceCommand.
RetryPatchPolicyParams struct for RetryPatchPolicyParams.
SafelistedAppsInner struct for SafelistedAppsInner.
Script struct for Script.
ScriptsSearchResults struct for ScriptsSearchResults.
SearchActivePatchHistoryParams struct for SearchActivePatchHistoryParams.
SearchPatchPolicyLogParams struct for SearchPatchPolicyLogParams.
Security struct for Security.
SecurityV2 struct for SecurityV2.
SelfServiceInstallSettings object representation of Self Service settings regarding installation .
SelfServiceInteractionSettings object representation of Self Service settings regarding user interaction .
SelfServiceLoginSettings object representation of Self Service settings regarding login .
SelfServiceSettings object representation of Self Service settings .
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
Session struct for Session.
SessionCandidateRequest Request to crate new remote session.
SessionDetails Session details.
SessionDetailsSearchResults Sessions search result.
SessionStatus Session status.
SetRecoveryLockCommand struct for SetRecoveryLockCommand.
SettingsCommand struct for SettingsCommand.
SharedDeviceConfiguration struct for SharedDeviceConfiguration.
Signature struct for Signature.
Site struct for Site.
SmartSearchCriterion struct for SmartSearchCriterion.
SoftwareTitleConfiguration struct for SoftwareTitleConfiguration.
SoftwareTitlePatchPolicySummaries struct for SoftwareTitlePatchPolicySummaries.
SoftwareUpdateSettings struct for SoftwareUpdateSettings.
SsoKeystore struct for SsoKeystore.
SsoKeystoreAllOf struct for SsoKeystoreAllOf.
SsoKeystoreCertParseResponse struct for SsoKeystoreCertParseResponse.
SsoKeystoreDetails struct for SsoKeystoreDetails.
SsoKeystoreParse struct for SsoKeystoreParse.
SsoKeystoreResponse struct for SsoKeystoreResponse.
SsoKeystoreResponseWithDetails struct for SsoKeystoreResponseWithDetails.
SsoKeystoreWithDetails struct for SsoKeystoreWithDetails.
SsoMetadataUrl struct for SsoMetadataUrl.
SsoSettings struct for SsoSettings.
StartupStatus struct for StartupStatus.
StaticUserGroup struct for StaticUserGroup.
SupervisionIdentity struct for SupervisionIdentity.
SupervisionIdentityCertificateUpload struct for SupervisionIdentityCertificateUpload.
SupervisionIdentityCreate struct for SupervisionIdentityCreate.
SupervisionIdentitySearchResults struct for SupervisionIdentitySearchResults.
SupervisionIdentityUpdate struct for SupervisionIdentityUpdate.
TeacherFeatures struct for TeacherFeatures.
TeacherSettingsRequest struct for TeacherSettingsRequest.
TeacherSettingsResponse struct for TeacherSettingsResponse.
TimeFrame struct for TimeFrame.
TimeZone struct for TimeZone.
TvOsDetails will be populated if the type is appleTv.
Udids struct for Udids.
UpdateAppleTv struct for UpdateAppleTv.
UpdateIos struct for UpdateIos.
UpdateIosV2 struct for UpdateIosV2.
UpdateMobileDevice struct for UpdateMobileDevice.
UpdateMobileDeviceV2 struct for UpdateMobileDeviceV2.
UpdateTvOs struct for UpdateTvOs.
UserAttributes struct for UserAttributes.
UserMappings Cloud Identity Provider user mappings configuration.
UserTestSearch struct for UserTestSearch.
UserTestSearchRequest struct for UserTestSearchRequest.
UserTestSearchResponse struct for UserTestSearchResponse.
V1Site struct for V1Site.
VenafiCaRecord struct for VenafiCaRecord.
VenafiPkiPayloadRecord struct for VenafiPkiPayloadRecord.
VenafiPkiPayloadRecordSearchResults struct for VenafiPkiPayloadRecordSearchResults.
VenafiServiceStatus struct for VenafiServiceStatus.
VerbosePackageDeploymentResponse struct for VerbosePackageDeploymentResponse.
VerbosePackageDeploymentResponseErrorsInner The error will contain either the 'device' or 'group' property.
VerbosePackageDeploymentResponseQueuedCommandsInner struct for VerbosePackageDeploymentResponseQueuedCommandsInner.
VolumePurchasingContent struct for VolumePurchasingContent.
VolumePurchasingLocation struct for VolumePurchasingLocation.
VolumePurchasingLocationAllOf struct for VolumePurchasingLocationAllOf.
VolumePurchasingLocationListView struct for VolumePurchasingLocationListView.
VolumePurchasingLocationPatch struct for VolumePurchasingLocationPatch.
VolumePurchasingLocationPost struct for VolumePurchasingLocationPost.
VolumePurchasingLocations struct for VolumePurchasingLocations.
VolumePurchasingSubscription struct for VolumePurchasingSubscription.
VolumePurchasingSubscriptionAllOf struct for VolumePurchasingSubscriptionAllOf.
VolumePurchasingSubscriptionBase struct for VolumePurchasingSubscriptionBase.
VolumePurchasingSubscriptions struct for VolumePurchasingSubscriptions.
VppAdminAccount struct for VppAdminAccount.
VppTokenSubscription struct for VppTokenSubscription.
WebLink struct for WebLink.

# Interfaces

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

AdvancedMobileDeviceSearchesApiService AdvancedMobileDeviceSearchesApi service.
AdvancedUserContentSearchesApiService AdvancedUserContentSearchesApi service.
ApiAuthenticationApiService ApiAuthenticationApi service.
AppAnalyticsSetting the model 'AppAnalyticsSetting'.
AppDynamicsConfigurationPreviewApiService AppDynamicsConfigurationPreviewApi service.
AppRequestPreviewApiService AppRequestPreviewApi service.
AppStoreCountryCodesPreviewApiService AppStoreCountryCodesPreviewApi service.
BuildingsApiService BuildingsApi service.
CacheSettingsApiService CacheSettingsApi service.
CategoriesApiService CategoriesApi service.
CertificateAuthorityApiService CertificateAuthorityApi service.
ClassicLdapApiService ClassicLdapApi service.
ClientCheckInApiService ClientCheckInApi service.
CloudAzureApiService CloudAzureApi service.
CloudIdpApiService CloudIdpApi service.
CloudLdapApiService CloudLdapApi service.
ComputerInventoryApiService ComputerInventoryApi service.
ComputerInventoryCollectionSettingsApiService ComputerInventoryCollectionSettingsApi service.
ComputerPartitionFileVault2State the model 'ComputerPartitionFileVault2State'.
ComputerPrestagesApiService ComputerPrestagesApi service.
ComputerSection the model 'ComputerSection'.
ComputersPreviewApiService ComputersPreviewApi service.
ConditionalAccessApiService ConditionalAccessApi service.
CsaApiService CsaApi service.
DataRoamingSetting the model 'DataRoamingSetting'.
DayOfWeek the model 'DayOfWeek'.
DepartmentsApiService DepartmentsApi service.
DeviceCommunicationSettingsApiService DeviceCommunicationSettingsApi service.
DeviceEnrollmentsApiService DeviceEnrollmentsApi service.
DeviceEnrollmentsDevicesApiService DeviceEnrollmentsDevicesApi service.
DiagnosticSubmissionSetting the model 'DiagnosticSubmissionSetting'.
EbooksApiService EbooksApi service.
EngageApiService EngageApi service.
EnrollmentApiService EnrollmentApi service.
EnrollmentCustomizationApiService EnrollmentCustomizationApi service.
EnrollmentCustomizationPreviewApiService EnrollmentCustomizationPreviewApi service.
IconApiService IconApi service.
InventoryInformationApiService InventoryInformationApi service.
InventoryPreloadApiService InventoryPreloadApi service.
JamfConnectApiService JamfConnectApi service.
JamfManagementFrameworkApiService JamfManagementFrameworkApi service.
JamfPackageApiService JamfPackageApi service.
JamfProInformationPreviewApiService JamfProInformationPreviewApi service.
JamfProInitializationApiService JamfProInitializationApi service.
JamfProInitializationPreviewApiService JamfProInitializationPreviewApi service.
JamfProNotificationsApiService JamfProNotificationsApi service.
JamfProNotificationsPreviewApiService JamfProNotificationsPreviewApi service.
JamfProServerUrlPreviewApiService JamfProServerUrlPreviewApi service.
JamfProtectApiService JamfProtectApi service.
JamfProUserAccountSettingsApiService JamfProUserAccountSettingsApi service.
JamfProUserAccountSettingsPreviewApiService JamfProUserAccountSettingsPreviewApi service.
JamfProVersionApiService JamfProVersionApi service.
LdapApiService LdapApi service.
LocalesPreviewApiService LocalesPreviewApi service.
MacosManagedSoftwareUpdatesApiService MacosManagedSoftwareUpdatesApi service.
MdmApiService MdmApi service.
MdmClientType the model 'MdmClientType'.
MdmCommandState the model 'MdmCommandState'.
MdmCommandType the model 'MdmCommandType'.
MobileDeviceEnrollmentProfileApiService MobileDeviceEnrollmentProfileApi service.
MobileDeviceExtensionAttributesPreviewApiService MobileDeviceExtensionAttributesPreviewApi service.
MobileDeviceGroupsPreviewApiService MobileDeviceGroupsPreviewApi service.
MobileDevicePrestagesApiService MobileDevicePrestagesApi service.
MobileDevicesApiService MobileDevicesApi service.
NotificationType the model 'NotificationType'.
ParentAppPreviewApiService ParentAppPreviewApi service.
PatchesApiService PatchesApi service.
PatchesPreviewApiService PatchesPreviewApi service.
PatchPoliciesPreviewApiService PatchPoliciesPreviewApi service.
PatchPolicyLogsPreviewApiService PatchPolicyLogsPreviewApi service.
PersonalHotspotSetting the model 'PersonalHotspotSetting'.
PoliciesPreviewApiService PoliciesPreviewApi service.
ReEnrollmentPreviewApiService ReEnrollmentPreviewApi service.
RemoteAdministrationApiService RemoteAdministrationApi service.
ScriptsApiService ScriptsApi service.
SelfServiceApiService SelfServiceApi service.
SelfServiceBrandingIosApiService SelfServiceBrandingIosApi service.
SelfServiceBrandingMacosApiService SelfServiceBrandingMacosApi service.
SelfServiceBrandingPreviewApiService SelfServiceBrandingPreviewApi service.
ServerConfigurations stores multiple ServerConfiguration items.
SitesPreviewApiService SitesPreviewApi service.
SmartComputerGroupsPreviewApiService SmartComputerGroupsPreviewApi service.
SmartMobileDeviceGroupsPreviewApiService SmartMobileDeviceGroupsPreviewApi service.
SmartUserGroupsPreviewApiService SmartUserGroupsPreviewApi service.
SsoCertificateApiService SsoCertificateApi service.
SsoCertificatePreviewApiService SsoCertificatePreviewApi service.
SsoSettingsApiService SsoSettingsApi service.
StartupStatusApiService StartupStatusApi service.
StaticUserGroupsPreviewApiService StaticUserGroupsPreviewApi service.
SupervisionIdentitiesPreviewApiService SupervisionIdentitiesPreviewApi service.
TeacherAppApiService TeacherAppApi service.
TeamViewerRemoteAdministrationApiService TeamViewerRemoteAdministrationApi service.
TimeZonesPreviewApiService TimeZonesPreviewApi service.
TomcatSettingsPreviewApiService TomcatSettingsPreviewApi service.
UserSessionPreviewApiService UserSessionPreviewApi service.
VenafiPreviewApiService VenafiPreviewApi service.
VoiceRoamingSetting the model 'VoiceRoamingSetting'.
VolumePurchasingLocationsApiService VolumePurchasingLocationsApi service.
VolumePurchasingSubscriptionsApiService VolumePurchasingSubscriptionsApi service.
VppAdminAccountsPreviewApiService VppAdminAccountsPreviewApi service.
VppSubscriptionsPreviewApiService VppSubscriptionsPreviewApi service.