PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
SecurityNamespace
/
Model
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * KubernetesPodEvidence File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ namespace Microsoft\Graph\SecurityNamespace\Model; /** * KubernetesPodEvidence class * * @category Model * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ class KubernetesPodEvidence extends AlertEvidence { /** * Gets the containers * The list of pod containers which are not init or ephemeral containers. * * @return ContainerEvidence|null The containers */ public function getContainers() { if (array_key_exists("containers", $this->_propDict)) { if (is_a($this->_propDict["containers"], "\Microsoft\Graph\SecurityNamespace\Model\ContainerEvidence") || is_null($this->_propDict["containers"])) { return $this->_propDict["containers"]; } else { $this->_propDict["containers"] = new ContainerEvidence($this->_propDict["containers"]); return $this->_propDict["containers"]; } } return null; } /** * Sets the containers * The list of pod containers which are not init or ephemeral containers. * * @param ContainerEvidence $val The value to assign to the containers * * @return KubernetesPodEvidence The KubernetesPodEvidence */ public function setContainers($val) { $this->_propDict["containers"] = $val; return $this; } /** * Gets the controller * The pod controller. * * @return KubernetesControllerEvidence|null The controller */ public function getController() { if (array_key_exists("controller", $this->_propDict)) { if (is_a($this->_propDict["controller"], "\Microsoft\Graph\SecurityNamespace\Model\KubernetesControllerEvidence") || is_null($this->_propDict["controller"])) { return $this->_propDict["controller"]; } else { $this->_propDict["controller"] = new KubernetesControllerEvidence($this->_propDict["controller"]); return $this->_propDict["controller"]; } } return null; } /** * Sets the controller * The pod controller. * * @param KubernetesControllerEvidence $val The value to assign to the controller * * @return KubernetesPodEvidence The KubernetesPodEvidence */ public function setController($val) { $this->_propDict["controller"] = $val; return $this; } /** * Gets the ephemeralContainers * The list of pod ephemeral containers. * * @return ContainerEvidence|null The ephemeralContainers */ public function getEphemeralContainers() { if (array_key_exists("ephemeralContainers", $this->_propDict)) { if (is_a($this->_propDict["ephemeralContainers"], "\Microsoft\Graph\SecurityNamespace\Model\ContainerEvidence") || is_null($this->_propDict["ephemeralContainers"])) { return $this->_propDict["ephemeralContainers"]; } else { $this->_propDict["ephemeralContainers"] = new ContainerEvidence($this->_propDict["ephemeralContainers"]); return $this->_propDict["ephemeralContainers"]; } } return null; } /** * Sets the ephemeralContainers * The list of pod ephemeral containers. * * @param ContainerEvidence $val The value to assign to the ephemeralContainers * * @return KubernetesPodEvidence The KubernetesPodEvidence */ public function setEphemeralContainers($val) { $this->_propDict["ephemeralContainers"] = $val; return $this; } /** * Gets the initContainers * The list of pod init containers. * * @return ContainerEvidence|null The initContainers */ public function getInitContainers() { if (array_key_exists("initContainers", $this->_propDict)) { if (is_a($this->_propDict["initContainers"], "\Microsoft\Graph\SecurityNamespace\Model\ContainerEvidence") || is_null($this->_propDict["initContainers"])) { return $this->_propDict["initContainers"]; } else { $this->_propDict["initContainers"] = new ContainerEvidence($this->_propDict["initContainers"]); return $this->_propDict["initContainers"]; } } return null; } /** * Sets the initContainers * The list of pod init containers. * * @param ContainerEvidence $val The value to assign to the initContainers * * @return KubernetesPodEvidence The KubernetesPodEvidence */ public function setInitContainers($val) { $this->_propDict["initContainers"] = $val; return $this; } /** * Gets the labels * The pod labels. * * @return Dictionary|null The labels */ public function getLabels() { if (array_key_exists("labels", $this->_propDict)) { if (is_a($this->_propDict["labels"], "\Microsoft\Graph\SecurityNamespace\Model\Dictionary") || is_null($this->_propDict["labels"])) { return $this->_propDict["labels"]; } else { $this->_propDict["labels"] = new Dictionary($this->_propDict["labels"]); return $this->_propDict["labels"]; } } return null; } /** * Sets the labels * The pod labels. * * @param Dictionary $val The value to assign to the labels * * @return KubernetesPodEvidence The KubernetesPodEvidence */ public function setLabels($val) { $this->_propDict["labels"] = $val; return $this; } /** * Gets the name * The pod name. * * @return string|null The name */ public function getName() { if (array_key_exists("name", $this->_propDict)) { return $this->_propDict["name"]; } else { return null; } } /** * Sets the name * The pod name. * * @param string $val The value of the name * * @return KubernetesPodEvidence */ public function setName($val) { $this->_propDict["name"] = $val; return $this; } /** * Gets the namespace * The pod namespace. * * @return KubernetesNamespaceEvidence|null The namespace */ public function getNamespace() { if (array_key_exists("namespace", $this->_propDict)) { if (is_a($this->_propDict["namespace"], "\Microsoft\Graph\SecurityNamespace\Model\KubernetesNamespaceEvidence") || is_null($this->_propDict["namespace"])) { return $this->_propDict["namespace"]; } else { $this->_propDict["namespace"] = new KubernetesNamespaceEvidence($this->_propDict["namespace"]); return $this->_propDict["namespace"]; } } return null; } /** * Sets the namespace * The pod namespace. * * @param KubernetesNamespaceEvidence $val The value to assign to the namespace * * @return KubernetesPodEvidence The KubernetesPodEvidence */ public function setNamespace($val) { $this->_propDict["namespace"] = $val; return $this; } /** * Gets the podIp * The pod IP. * * @return IpEvidence|null The podIp */ public function getPodIp() { if (array_key_exists("podIp", $this->_propDict)) { if (is_a($this->_propDict["podIp"], "\Microsoft\Graph\SecurityNamespace\Model\IpEvidence") || is_null($this->_propDict["podIp"])) { return $this->_propDict["podIp"]; } else { $this->_propDict["podIp"] = new IpEvidence($this->_propDict["podIp"]); return $this->_propDict["podIp"]; } } return null; } /** * Sets the podIp * The pod IP. * * @param IpEvidence $val The value to assign to the podIp * * @return KubernetesPodEvidence The KubernetesPodEvidence */ public function setPodIp($val) { $this->_propDict["podIp"] = $val; return $this; } /** * Gets the serviceAccount * The pod service account. * * @return KubernetesServiceAccountEvidence|null The serviceAccount */ public function getServiceAccount() { if (array_key_exists("serviceAccount", $this->_propDict)) { if (is_a($this->_propDict["serviceAccount"], "\Microsoft\Graph\SecurityNamespace\Model\KubernetesServiceAccountEvidence") || is_null($this->_propDict["serviceAccount"])) { return $this->_propDict["serviceAccount"]; } else { $this->_propDict["serviceAccount"] = new KubernetesServiceAccountEvidence($this->_propDict["serviceAccount"]); return $this->_propDict["serviceAccount"]; } } return null; } /** * Sets the serviceAccount * The pod service account. * * @param KubernetesServiceAccountEvidence $val The value to assign to the serviceAccount * * @return KubernetesPodEvidence The KubernetesPodEvidence */ public function setServiceAccount($val) { $this->_propDict["serviceAccount"] = $val; return $this; } }
[+]
..
[-] ExportFileMetadata.php
[edit]
[-] AmazonResourceEvidence.php
[edit]
[-] Subdomain.php
[edit]
[-] EmailSender.php
[edit]
[-] FileHashAlgorithm.php
[edit]
[-] IntelligenceProfileKind.php
[edit]
[-] AlertDetermination.php
[edit]
[-] EvidenceVerdict.php
[edit]
[-] Hyperlink.php
[edit]
[-] SiteSource.php
[edit]
[-] EdiscoveryCase.php
[edit]
[-] DataSourceContainer.php
[edit]
[-] EdiscoveryAddToReviewSetOperation.php
[edit]
[-] BlobContainerEvidence.php
[edit]
[-] HostReputationRuleSeverity.php
[edit]
[-] UnclassifiedArtifact.php
[edit]
[-] WhoisDomainStatus.php
[edit]
[-] WhoisBaseRecord.php
[edit]
[-] EdiscoveryIndexOperation.php
[edit]
[-] UrlEvidence.php
[edit]
[-] FileDetails.php
[edit]
[-] AlertClassification.php
[edit]
[-] IntelligenceProfileIndicator.php
[edit]
[-] DataSourceHoldStatus.php
[edit]
[-] FileHash.php
[edit]
[-] KubernetesClusterEvidence.php
[edit]
[-] KubernetesServicePort.php
[edit]
[-] DataSource.php
[edit]
[-] ChildSelectability.php
[edit]
[-] GoogleCloudLocationType.php
[edit]
[-] EdiscoveryExportOperation.php
[edit]
[-] EdiscoveryCustodian.php
[edit]
[-] KubernetesControllerEvidence.php
[edit]
[-] Search.php
[edit]
[-] KubernetesPlatform.php
[edit]
[-] PurgeType.php
[edit]
[-] RetentionEvent.php
[edit]
[-] OcrSettings.php
[edit]
[-] VulnerabilityComponent.php
[edit]
[-] KubernetesSecretEvidence.php
[edit]
[-] HostPort.php
[edit]
[-] MailboxEvidence.php
[edit]
[-] IncidentStatus.php
[edit]
[-] Vulnerability.php
[edit]
[-] KubernetesServiceAccountEvidence.php
[edit]
[-] AlertComment.php
[edit]
[-] RegistryValueEvidence.php
[edit]
[-] Hostname.php
[edit]
[-] OauthApplicationEvidence.php
[edit]
[-] HuntingQueryResults.php
[edit]
[-] KubernetesPodEvidence.php
[edit]
[-] DeviceRiskScore.php
[edit]
[-] CaseOperation.php
[edit]
[-] DataSet.php
[edit]
[-] CaseOperationStatus.php
[edit]
[-] AdditionalDataOptions.php
[edit]
[-] EventStatusType.php
[edit]
[-] IntelligenceProfile.php
[edit]
[-] EdiscoveryTagOperation.php
[edit]
[-] WhoisRecord.php
[edit]
[-] KubernetesServiceType.php
[edit]
[-] ServiceSource.php
[edit]
[-] ContentFormat.php
[edit]
[-] DeviceEvidence.php
[edit]
[-] HostPair.php
[edit]
[-] LoggedOnUser.php
[edit]
[-] HostPortProtocol.php
[edit]
[-] AlertStatus.php
[edit]
[-] VmCloudProvider.php
[edit]
[-] Article.php
[edit]
[-] EdiscoveryReviewSetQuery.php
[edit]
[-] DetectionStatus.php
[edit]
[-] FormattedContent.php
[edit]
[-] WhoisContact.php
[edit]
[-] CvssSummary.php
[edit]
[-] AnalyzedMessageEvidence.php
[edit]
[-] EdiscoveryReviewTag.php
[edit]
[-] AzureResourceEvidence.php
[edit]
[-] ArticleIndicator.php
[edit]
[-] CaseStatus.php
[edit]
[-] WhoisHistoryRecord.php
[edit]
[-] EvidenceRole.php
[edit]
[-] EvidenceRemediationStatus.php
[edit]
[-] HuntingRowResult.php
[edit]
[-] HostReputationRule.php
[edit]
[-] RedundancyDetectionSettings.php
[edit]
[-] EdiscoveryPurgeDataOperation.php
[edit]
[-] HostComponent.php
[edit]
[-] ThreatIntelligence.php
[edit]
[-] AlertEvidence.php
[edit]
[-] SslCertificate.php
[edit]
[-] IpEvidence.php
[edit]
[-] Incident.php
[edit]
[-] RetentionEventStatus.php
[edit]
[-] OnboardingStatus.php
[edit]
[-] VulnerabilitySeverity.php
[edit]
[-] UserAccount.php
[edit]
[-] EdiscoveryNoncustodialDataSource.php
[edit]
[-] GoogleCloudResourceEvidence.php
[edit]
[-] DefenderAvStatus.php
[edit]
[-] IpAddress.php
[edit]
[-] HostPortStatus.php
[edit]
[-] ProcessEvidence.php
[edit]
[-] Dictionary.php
[edit]
[-] DynamicColumnValue.php
[edit]
[-] ExportOptions.php
[edit]
[-] CasesRoot.php
[edit]
[-] EdiscoverySearch.php
[edit]
[-] FileEvidence.php
[edit]
[-] BlobEvidence.php
[edit]
[-] UserEvidence.php
[edit]
[-] ContainerImageEvidence.php
[edit]
[-] RegistryKeyEvidence.php
[edit]
[-] HostSslCertificate.php
[edit]
[-] EdiscoveryEstimateOperation.php
[edit]
[-] QueryType.php
[edit]
[-] EventPropagationResult.php
[edit]
[-] HostPortComponent.php
[edit]
[-] DataSourceContainerStatus.php
[edit]
[-] RetentionTrigger.php
[edit]
[-] UnifiedGroupSource.php
[edit]
[-] PassiveDnsRecord.php
[edit]
[-] EdiscoveryCaseSettings.php
[edit]
[-] HostCookie.php
[edit]
[-] CloudApplicationEvidence.php
[edit]
[-] DetectionSource.php
[edit]
[-] HostTracker.php
[edit]
[-] EdiscoveryReviewSet.php
[edit]
[-] SinglePropertySchema.php
[edit]
[-] HostPortBanner.php
[edit]
[-] UserSource.php
[edit]
[-] GraphCase.php
[edit]
[-] Artifact.php
[edit]
[-] DataSourceScopes.php
[edit]
[-] ExportFileStructure.php
[edit]
[-] EventPropagationStatus.php
[edit]
[-] HostReputationClassification.php
[edit]
[-] WhoisNameserver.php
[edit]
[-] HostSslCertificatePort.php
[edit]
[-] MailClusterEvidence.php
[edit]
[-] EdiscoveryHoldOperation.php
[edit]
[-] TopicModelingSettings.php
[edit]
[-] HostReputation.php
[edit]
[-] IntelligenceProfileCountryOrRegionOfOrigin.php
[edit]
[-] SslCertificateEntity.php
[edit]
[-] TriggersRoot.php
[edit]
[-] ContainerRegistryEvidence.php
[edit]
[-] IndicatorSource.php
[edit]
[-] TriggerTypesRoot.php
[edit]
[-] SourceType.php
[edit]
[-] PurgeAreas.php
[edit]
[-] ContainerPortProtocol.php
[edit]
[-] KubernetesServiceEvidence.php
[edit]
[-] RetentionEventType.php
[edit]
[-] Tag.php
[edit]
[-] StringValueDictionary.php
[edit]
[-] KubernetesNamespaceEvidence.php
[edit]
[-] SecurityGroupEvidence.php
[edit]
[-] AlertSeverity.php
[edit]
[-] ContainerEvidence.php
[edit]
[-] Indicator.php
[edit]
[-] AutonomousSystem.php
[edit]
[-] DeviceHealthStatus.php
[edit]
[-] VmMetadata.php
[edit]
[-] EventQuery.php
[edit]
[-] CaseAction.php
[edit]
[-] Host.php
[edit]
[-] Alert.php
[edit]