/sdk/appservice/mgmt-v2018_02_01/src/main/java/com/microsoft/azure/management/appservice/v2018_02_01/implementation/ProcessInfoInner.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 948 lines · 330 code · 110 blank · 508 comment · 0 complexity · d6b4e9e1d9b2e76a45ca1bcffef37fd2 MD5 · raw file

  1. /**
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for
  4. * license information.
  5. *
  6. * Code generated by Microsoft (R) AutoRest Code Generator.
  7. */
  8. package com.microsoft.azure.management.appservice.v2018_02_01.implementation;
  9. import java.util.List;
  10. import org.joda.time.DateTime;
  11. import java.util.Map;
  12. import com.fasterxml.jackson.annotation.JsonProperty;
  13. import com.microsoft.rest.serializer.JsonFlatten;
  14. import com.microsoft.azure.management.appservice.v2018_02_01.ProxyOnlyResource;
  15. /**
  16. * Process Information.
  17. */
  18. @JsonFlatten
  19. public class ProcessInfoInner extends ProxyOnlyResource {
  20. /**
  21. * ARM Identifier for deployment.
  22. */
  23. @JsonProperty(value = "properties.identifier", access = JsonProperty.Access.WRITE_ONLY)
  24. private Integer identifier;
  25. /**
  26. * Deployment name.
  27. */
  28. @JsonProperty(value = "properties.deployment_name")
  29. private String deploymentName;
  30. /**
  31. * HRef URI.
  32. */
  33. @JsonProperty(value = "properties.href")
  34. private String href;
  35. /**
  36. * Minidump URI.
  37. */
  38. @JsonProperty(value = "properties.minidump")
  39. private String minidump;
  40. /**
  41. * Is profile running?.
  42. */
  43. @JsonProperty(value = "properties.is_profile_running")
  44. private Boolean isProfileRunning;
  45. /**
  46. * Is the IIS Profile running?.
  47. */
  48. @JsonProperty(value = "properties.is_iis_profile_running")
  49. private Boolean isIisProfileRunning;
  50. /**
  51. * IIS Profile timeout (seconds).
  52. */
  53. @JsonProperty(value = "properties.iis_profile_timeout_in_seconds")
  54. private Double iisProfileTimeoutInSeconds;
  55. /**
  56. * Parent process.
  57. */
  58. @JsonProperty(value = "properties.parent")
  59. private String parent;
  60. /**
  61. * Child process list.
  62. */
  63. @JsonProperty(value = "properties.children")
  64. private List<String> children;
  65. /**
  66. * Thread list.
  67. */
  68. @JsonProperty(value = "properties.threads")
  69. private List<ProcessThreadInfoInner> threads;
  70. /**
  71. * List of open files.
  72. */
  73. @JsonProperty(value = "properties.open_file_handles")
  74. private List<String> openFileHandles;
  75. /**
  76. * List of modules.
  77. */
  78. @JsonProperty(value = "properties.modules")
  79. private List<ProcessModuleInfoInner> modules;
  80. /**
  81. * File name of this process.
  82. */
  83. @JsonProperty(value = "properties.file_name")
  84. private String fileName;
  85. /**
  86. * Command line.
  87. */
  88. @JsonProperty(value = "properties.command_line")
  89. private String commandLine;
  90. /**
  91. * User name.
  92. */
  93. @JsonProperty(value = "properties.user_name")
  94. private String userName;
  95. /**
  96. * Handle count.
  97. */
  98. @JsonProperty(value = "properties.handle_count")
  99. private Integer handleCount;
  100. /**
  101. * Module count.
  102. */
  103. @JsonProperty(value = "properties.module_count")
  104. private Integer moduleCount;
  105. /**
  106. * Thread count.
  107. */
  108. @JsonProperty(value = "properties.thread_count")
  109. private Integer threadCount;
  110. /**
  111. * Start time.
  112. */
  113. @JsonProperty(value = "properties.start_time")
  114. private DateTime startTime;
  115. /**
  116. * Total CPU time.
  117. */
  118. @JsonProperty(value = "properties.total_cpu_time")
  119. private String totalCpuTime;
  120. /**
  121. * User CPU time.
  122. */
  123. @JsonProperty(value = "properties.user_cpu_time")
  124. private String userCpuTime;
  125. /**
  126. * Privileged CPU time.
  127. */
  128. @JsonProperty(value = "properties.privileged_cpu_time")
  129. private String privilegedCpuTime;
  130. /**
  131. * Working set.
  132. */
  133. @JsonProperty(value = "properties.working_set")
  134. private Long workingSet;
  135. /**
  136. * Peak working set.
  137. */
  138. @JsonProperty(value = "properties.peak_working_set")
  139. private Long peakWorkingSet;
  140. /**
  141. * Private memory size.
  142. */
  143. @JsonProperty(value = "properties.private_memory")
  144. private Long privateMemory;
  145. /**
  146. * Virtual memory size.
  147. */
  148. @JsonProperty(value = "properties.virtual_memory")
  149. private Long virtualMemory;
  150. /**
  151. * Peak virtual memory usage.
  152. */
  153. @JsonProperty(value = "properties.peak_virtual_memory")
  154. private Long peakVirtualMemory;
  155. /**
  156. * Paged system memory.
  157. */
  158. @JsonProperty(value = "properties.paged_system_memory")
  159. private Long pagedSystemMemory;
  160. /**
  161. * Non-paged system memory.
  162. */
  163. @JsonProperty(value = "properties.non_paged_system_memory")
  164. private Long nonPagedSystemMemory;
  165. /**
  166. * Paged memory.
  167. */
  168. @JsonProperty(value = "properties.paged_memory")
  169. private Long pagedMemory;
  170. /**
  171. * Peak paged memory.
  172. */
  173. @JsonProperty(value = "properties.peak_paged_memory")
  174. private Long peakPagedMemory;
  175. /**
  176. * Time stamp.
  177. */
  178. @JsonProperty(value = "properties.time_stamp")
  179. private DateTime timeStamp;
  180. /**
  181. * List of environment variables.
  182. */
  183. @JsonProperty(value = "properties.environment_variables")
  184. private Map<String, String> environmentVariables;
  185. /**
  186. * Is this the SCM site?.
  187. */
  188. @JsonProperty(value = "properties.is_scm_site")
  189. private Boolean isScmSite;
  190. /**
  191. * Is this a Web Job?.
  192. */
  193. @JsonProperty(value = "properties.is_webjob")
  194. private Boolean isWebjob;
  195. /**
  196. * Description of process.
  197. */
  198. @JsonProperty(value = "properties.description")
  199. private String description;
  200. /**
  201. * Get aRM Identifier for deployment.
  202. *
  203. * @return the identifier value
  204. */
  205. public Integer identifier() {
  206. return this.identifier;
  207. }
  208. /**
  209. * Get deployment name.
  210. *
  211. * @return the deploymentName value
  212. */
  213. public String deploymentName() {
  214. return this.deploymentName;
  215. }
  216. /**
  217. * Set deployment name.
  218. *
  219. * @param deploymentName the deploymentName value to set
  220. * @return the ProcessInfoInner object itself.
  221. */
  222. public ProcessInfoInner withDeploymentName(String deploymentName) {
  223. this.deploymentName = deploymentName;
  224. return this;
  225. }
  226. /**
  227. * Get hRef URI.
  228. *
  229. * @return the href value
  230. */
  231. public String href() {
  232. return this.href;
  233. }
  234. /**
  235. * Set hRef URI.
  236. *
  237. * @param href the href value to set
  238. * @return the ProcessInfoInner object itself.
  239. */
  240. public ProcessInfoInner withHref(String href) {
  241. this.href = href;
  242. return this;
  243. }
  244. /**
  245. * Get minidump URI.
  246. *
  247. * @return the minidump value
  248. */
  249. public String minidump() {
  250. return this.minidump;
  251. }
  252. /**
  253. * Set minidump URI.
  254. *
  255. * @param minidump the minidump value to set
  256. * @return the ProcessInfoInner object itself.
  257. */
  258. public ProcessInfoInner withMinidump(String minidump) {
  259. this.minidump = minidump;
  260. return this;
  261. }
  262. /**
  263. * Get is profile running?.
  264. *
  265. * @return the isProfileRunning value
  266. */
  267. public Boolean isProfileRunning() {
  268. return this.isProfileRunning;
  269. }
  270. /**
  271. * Set is profile running?.
  272. *
  273. * @param isProfileRunning the isProfileRunning value to set
  274. * @return the ProcessInfoInner object itself.
  275. */
  276. public ProcessInfoInner withIsProfileRunning(Boolean isProfileRunning) {
  277. this.isProfileRunning = isProfileRunning;
  278. return this;
  279. }
  280. /**
  281. * Get is the IIS Profile running?.
  282. *
  283. * @return the isIisProfileRunning value
  284. */
  285. public Boolean isIisProfileRunning() {
  286. return this.isIisProfileRunning;
  287. }
  288. /**
  289. * Set is the IIS Profile running?.
  290. *
  291. * @param isIisProfileRunning the isIisProfileRunning value to set
  292. * @return the ProcessInfoInner object itself.
  293. */
  294. public ProcessInfoInner withIsIisProfileRunning(Boolean isIisProfileRunning) {
  295. this.isIisProfileRunning = isIisProfileRunning;
  296. return this;
  297. }
  298. /**
  299. * Get iIS Profile timeout (seconds).
  300. *
  301. * @return the iisProfileTimeoutInSeconds value
  302. */
  303. public Double iisProfileTimeoutInSeconds() {
  304. return this.iisProfileTimeoutInSeconds;
  305. }
  306. /**
  307. * Set iIS Profile timeout (seconds).
  308. *
  309. * @param iisProfileTimeoutInSeconds the iisProfileTimeoutInSeconds value to set
  310. * @return the ProcessInfoInner object itself.
  311. */
  312. public ProcessInfoInner withIisProfileTimeoutInSeconds(Double iisProfileTimeoutInSeconds) {
  313. this.iisProfileTimeoutInSeconds = iisProfileTimeoutInSeconds;
  314. return this;
  315. }
  316. /**
  317. * Get parent process.
  318. *
  319. * @return the parent value
  320. */
  321. public String parent() {
  322. return this.parent;
  323. }
  324. /**
  325. * Set parent process.
  326. *
  327. * @param parent the parent value to set
  328. * @return the ProcessInfoInner object itself.
  329. */
  330. public ProcessInfoInner withParent(String parent) {
  331. this.parent = parent;
  332. return this;
  333. }
  334. /**
  335. * Get child process list.
  336. *
  337. * @return the children value
  338. */
  339. public List<String> children() {
  340. return this.children;
  341. }
  342. /**
  343. * Set child process list.
  344. *
  345. * @param children the children value to set
  346. * @return the ProcessInfoInner object itself.
  347. */
  348. public ProcessInfoInner withChildren(List<String> children) {
  349. this.children = children;
  350. return this;
  351. }
  352. /**
  353. * Get thread list.
  354. *
  355. * @return the threads value
  356. */
  357. public List<ProcessThreadInfoInner> threads() {
  358. return this.threads;
  359. }
  360. /**
  361. * Set thread list.
  362. *
  363. * @param threads the threads value to set
  364. * @return the ProcessInfoInner object itself.
  365. */
  366. public ProcessInfoInner withThreads(List<ProcessThreadInfoInner> threads) {
  367. this.threads = threads;
  368. return this;
  369. }
  370. /**
  371. * Get list of open files.
  372. *
  373. * @return the openFileHandles value
  374. */
  375. public List<String> openFileHandles() {
  376. return this.openFileHandles;
  377. }
  378. /**
  379. * Set list of open files.
  380. *
  381. * @param openFileHandles the openFileHandles value to set
  382. * @return the ProcessInfoInner object itself.
  383. */
  384. public ProcessInfoInner withOpenFileHandles(List<String> openFileHandles) {
  385. this.openFileHandles = openFileHandles;
  386. return this;
  387. }
  388. /**
  389. * Get list of modules.
  390. *
  391. * @return the modules value
  392. */
  393. public List<ProcessModuleInfoInner> modules() {
  394. return this.modules;
  395. }
  396. /**
  397. * Set list of modules.
  398. *
  399. * @param modules the modules value to set
  400. * @return the ProcessInfoInner object itself.
  401. */
  402. public ProcessInfoInner withModules(List<ProcessModuleInfoInner> modules) {
  403. this.modules = modules;
  404. return this;
  405. }
  406. /**
  407. * Get file name of this process.
  408. *
  409. * @return the fileName value
  410. */
  411. public String fileName() {
  412. return this.fileName;
  413. }
  414. /**
  415. * Set file name of this process.
  416. *
  417. * @param fileName the fileName value to set
  418. * @return the ProcessInfoInner object itself.
  419. */
  420. public ProcessInfoInner withFileName(String fileName) {
  421. this.fileName = fileName;
  422. return this;
  423. }
  424. /**
  425. * Get command line.
  426. *
  427. * @return the commandLine value
  428. */
  429. public String commandLine() {
  430. return this.commandLine;
  431. }
  432. /**
  433. * Set command line.
  434. *
  435. * @param commandLine the commandLine value to set
  436. * @return the ProcessInfoInner object itself.
  437. */
  438. public ProcessInfoInner withCommandLine(String commandLine) {
  439. this.commandLine = commandLine;
  440. return this;
  441. }
  442. /**
  443. * Get user name.
  444. *
  445. * @return the userName value
  446. */
  447. public String userName() {
  448. return this.userName;
  449. }
  450. /**
  451. * Set user name.
  452. *
  453. * @param userName the userName value to set
  454. * @return the ProcessInfoInner object itself.
  455. */
  456. public ProcessInfoInner withUserName(String userName) {
  457. this.userName = userName;
  458. return this;
  459. }
  460. /**
  461. * Get handle count.
  462. *
  463. * @return the handleCount value
  464. */
  465. public Integer handleCount() {
  466. return this.handleCount;
  467. }
  468. /**
  469. * Set handle count.
  470. *
  471. * @param handleCount the handleCount value to set
  472. * @return the ProcessInfoInner object itself.
  473. */
  474. public ProcessInfoInner withHandleCount(Integer handleCount) {
  475. this.handleCount = handleCount;
  476. return this;
  477. }
  478. /**
  479. * Get module count.
  480. *
  481. * @return the moduleCount value
  482. */
  483. public Integer moduleCount() {
  484. return this.moduleCount;
  485. }
  486. /**
  487. * Set module count.
  488. *
  489. * @param moduleCount the moduleCount value to set
  490. * @return the ProcessInfoInner object itself.
  491. */
  492. public ProcessInfoInner withModuleCount(Integer moduleCount) {
  493. this.moduleCount = moduleCount;
  494. return this;
  495. }
  496. /**
  497. * Get thread count.
  498. *
  499. * @return the threadCount value
  500. */
  501. public Integer threadCount() {
  502. return this.threadCount;
  503. }
  504. /**
  505. * Set thread count.
  506. *
  507. * @param threadCount the threadCount value to set
  508. * @return the ProcessInfoInner object itself.
  509. */
  510. public ProcessInfoInner withThreadCount(Integer threadCount) {
  511. this.threadCount = threadCount;
  512. return this;
  513. }
  514. /**
  515. * Get start time.
  516. *
  517. * @return the startTime value
  518. */
  519. public DateTime startTime() {
  520. return this.startTime;
  521. }
  522. /**
  523. * Set start time.
  524. *
  525. * @param startTime the startTime value to set
  526. * @return the ProcessInfoInner object itself.
  527. */
  528. public ProcessInfoInner withStartTime(DateTime startTime) {
  529. this.startTime = startTime;
  530. return this;
  531. }
  532. /**
  533. * Get total CPU time.
  534. *
  535. * @return the totalCpuTime value
  536. */
  537. public String totalCpuTime() {
  538. return this.totalCpuTime;
  539. }
  540. /**
  541. * Set total CPU time.
  542. *
  543. * @param totalCpuTime the totalCpuTime value to set
  544. * @return the ProcessInfoInner object itself.
  545. */
  546. public ProcessInfoInner withTotalCpuTime(String totalCpuTime) {
  547. this.totalCpuTime = totalCpuTime;
  548. return this;
  549. }
  550. /**
  551. * Get user CPU time.
  552. *
  553. * @return the userCpuTime value
  554. */
  555. public String userCpuTime() {
  556. return this.userCpuTime;
  557. }
  558. /**
  559. * Set user CPU time.
  560. *
  561. * @param userCpuTime the userCpuTime value to set
  562. * @return the ProcessInfoInner object itself.
  563. */
  564. public ProcessInfoInner withUserCpuTime(String userCpuTime) {
  565. this.userCpuTime = userCpuTime;
  566. return this;
  567. }
  568. /**
  569. * Get privileged CPU time.
  570. *
  571. * @return the privilegedCpuTime value
  572. */
  573. public String privilegedCpuTime() {
  574. return this.privilegedCpuTime;
  575. }
  576. /**
  577. * Set privileged CPU time.
  578. *
  579. * @param privilegedCpuTime the privilegedCpuTime value to set
  580. * @return the ProcessInfoInner object itself.
  581. */
  582. public ProcessInfoInner withPrivilegedCpuTime(String privilegedCpuTime) {
  583. this.privilegedCpuTime = privilegedCpuTime;
  584. return this;
  585. }
  586. /**
  587. * Get working set.
  588. *
  589. * @return the workingSet value
  590. */
  591. public Long workingSet() {
  592. return this.workingSet;
  593. }
  594. /**
  595. * Set working set.
  596. *
  597. * @param workingSet the workingSet value to set
  598. * @return the ProcessInfoInner object itself.
  599. */
  600. public ProcessInfoInner withWorkingSet(Long workingSet) {
  601. this.workingSet = workingSet;
  602. return this;
  603. }
  604. /**
  605. * Get peak working set.
  606. *
  607. * @return the peakWorkingSet value
  608. */
  609. public Long peakWorkingSet() {
  610. return this.peakWorkingSet;
  611. }
  612. /**
  613. * Set peak working set.
  614. *
  615. * @param peakWorkingSet the peakWorkingSet value to set
  616. * @return the ProcessInfoInner object itself.
  617. */
  618. public ProcessInfoInner withPeakWorkingSet(Long peakWorkingSet) {
  619. this.peakWorkingSet = peakWorkingSet;
  620. return this;
  621. }
  622. /**
  623. * Get private memory size.
  624. *
  625. * @return the privateMemory value
  626. */
  627. public Long privateMemory() {
  628. return this.privateMemory;
  629. }
  630. /**
  631. * Set private memory size.
  632. *
  633. * @param privateMemory the privateMemory value to set
  634. * @return the ProcessInfoInner object itself.
  635. */
  636. public ProcessInfoInner withPrivateMemory(Long privateMemory) {
  637. this.privateMemory = privateMemory;
  638. return this;
  639. }
  640. /**
  641. * Get virtual memory size.
  642. *
  643. * @return the virtualMemory value
  644. */
  645. public Long virtualMemory() {
  646. return this.virtualMemory;
  647. }
  648. /**
  649. * Set virtual memory size.
  650. *
  651. * @param virtualMemory the virtualMemory value to set
  652. * @return the ProcessInfoInner object itself.
  653. */
  654. public ProcessInfoInner withVirtualMemory(Long virtualMemory) {
  655. this.virtualMemory = virtualMemory;
  656. return this;
  657. }
  658. /**
  659. * Get peak virtual memory usage.
  660. *
  661. * @return the peakVirtualMemory value
  662. */
  663. public Long peakVirtualMemory() {
  664. return this.peakVirtualMemory;
  665. }
  666. /**
  667. * Set peak virtual memory usage.
  668. *
  669. * @param peakVirtualMemory the peakVirtualMemory value to set
  670. * @return the ProcessInfoInner object itself.
  671. */
  672. public ProcessInfoInner withPeakVirtualMemory(Long peakVirtualMemory) {
  673. this.peakVirtualMemory = peakVirtualMemory;
  674. return this;
  675. }
  676. /**
  677. * Get paged system memory.
  678. *
  679. * @return the pagedSystemMemory value
  680. */
  681. public Long pagedSystemMemory() {
  682. return this.pagedSystemMemory;
  683. }
  684. /**
  685. * Set paged system memory.
  686. *
  687. * @param pagedSystemMemory the pagedSystemMemory value to set
  688. * @return the ProcessInfoInner object itself.
  689. */
  690. public ProcessInfoInner withPagedSystemMemory(Long pagedSystemMemory) {
  691. this.pagedSystemMemory = pagedSystemMemory;
  692. return this;
  693. }
  694. /**
  695. * Get non-paged system memory.
  696. *
  697. * @return the nonPagedSystemMemory value
  698. */
  699. public Long nonPagedSystemMemory() {
  700. return this.nonPagedSystemMemory;
  701. }
  702. /**
  703. * Set non-paged system memory.
  704. *
  705. * @param nonPagedSystemMemory the nonPagedSystemMemory value to set
  706. * @return the ProcessInfoInner object itself.
  707. */
  708. public ProcessInfoInner withNonPagedSystemMemory(Long nonPagedSystemMemory) {
  709. this.nonPagedSystemMemory = nonPagedSystemMemory;
  710. return this;
  711. }
  712. /**
  713. * Get paged memory.
  714. *
  715. * @return the pagedMemory value
  716. */
  717. public Long pagedMemory() {
  718. return this.pagedMemory;
  719. }
  720. /**
  721. * Set paged memory.
  722. *
  723. * @param pagedMemory the pagedMemory value to set
  724. * @return the ProcessInfoInner object itself.
  725. */
  726. public ProcessInfoInner withPagedMemory(Long pagedMemory) {
  727. this.pagedMemory = pagedMemory;
  728. return this;
  729. }
  730. /**
  731. * Get peak paged memory.
  732. *
  733. * @return the peakPagedMemory value
  734. */
  735. public Long peakPagedMemory() {
  736. return this.peakPagedMemory;
  737. }
  738. /**
  739. * Set peak paged memory.
  740. *
  741. * @param peakPagedMemory the peakPagedMemory value to set
  742. * @return the ProcessInfoInner object itself.
  743. */
  744. public ProcessInfoInner withPeakPagedMemory(Long peakPagedMemory) {
  745. this.peakPagedMemory = peakPagedMemory;
  746. return this;
  747. }
  748. /**
  749. * Get time stamp.
  750. *
  751. * @return the timeStamp value
  752. */
  753. public DateTime timeStamp() {
  754. return this.timeStamp;
  755. }
  756. /**
  757. * Set time stamp.
  758. *
  759. * @param timeStamp the timeStamp value to set
  760. * @return the ProcessInfoInner object itself.
  761. */
  762. public ProcessInfoInner withTimeStamp(DateTime timeStamp) {
  763. this.timeStamp = timeStamp;
  764. return this;
  765. }
  766. /**
  767. * Get list of environment variables.
  768. *
  769. * @return the environmentVariables value
  770. */
  771. public Map<String, String> environmentVariables() {
  772. return this.environmentVariables;
  773. }
  774. /**
  775. * Set list of environment variables.
  776. *
  777. * @param environmentVariables the environmentVariables value to set
  778. * @return the ProcessInfoInner object itself.
  779. */
  780. public ProcessInfoInner withEnvironmentVariables(Map<String, String> environmentVariables) {
  781. this.environmentVariables = environmentVariables;
  782. return this;
  783. }
  784. /**
  785. * Get is this the SCM site?.
  786. *
  787. * @return the isScmSite value
  788. */
  789. public Boolean isScmSite() {
  790. return this.isScmSite;
  791. }
  792. /**
  793. * Set is this the SCM site?.
  794. *
  795. * @param isScmSite the isScmSite value to set
  796. * @return the ProcessInfoInner object itself.
  797. */
  798. public ProcessInfoInner withIsScmSite(Boolean isScmSite) {
  799. this.isScmSite = isScmSite;
  800. return this;
  801. }
  802. /**
  803. * Get is this a Web Job?.
  804. *
  805. * @return the isWebjob value
  806. */
  807. public Boolean isWebjob() {
  808. return this.isWebjob;
  809. }
  810. /**
  811. * Set is this a Web Job?.
  812. *
  813. * @param isWebjob the isWebjob value to set
  814. * @return the ProcessInfoInner object itself.
  815. */
  816. public ProcessInfoInner withIsWebjob(Boolean isWebjob) {
  817. this.isWebjob = isWebjob;
  818. return this;
  819. }
  820. /**
  821. * Get description of process.
  822. *
  823. * @return the description value
  824. */
  825. public String description() {
  826. return this.description;
  827. }
  828. /**
  829. * Set description of process.
  830. *
  831. * @param description the description value to set
  832. * @return the ProcessInfoInner object itself.
  833. */
  834. public ProcessInfoInner withDescription(String description) {
  835. this.description = description;
  836. return this;
  837. }
  838. }