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

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 959 lines · 334 code · 111 blank · 514 comment · 0 complexity · a07334ac74fa9a910458eb0fe4591996 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.v2016_08_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.v2016_08_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.id")
  24. private Integer processInfoId;
  25. /**
  26. * Deployment name.
  27. */
  28. @JsonProperty(value = "properties.name")
  29. private String processInfoName;
  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.isProfileRunning")
  44. private Boolean isProfileRunning;
  45. /**
  46. * Is the IIS Profile running?.
  47. */
  48. @JsonProperty(value = "properties.isIisProfileRunning")
  49. private Boolean isIisProfileRunning;
  50. /**
  51. * IIS Profile timeout (seconds).
  52. */
  53. @JsonProperty(value = "properties.iisProfileTimeoutInSeconds")
  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.openFileHandles")
  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.fileName")
  84. private String fileName;
  85. /**
  86. * Command line.
  87. */
  88. @JsonProperty(value = "properties.commandLine")
  89. private String commandLine;
  90. /**
  91. * User name.
  92. */
  93. @JsonProperty(value = "properties.userName")
  94. private String userName;
  95. /**
  96. * Handle count.
  97. */
  98. @JsonProperty(value = "properties.handleCount")
  99. private Integer handleCount;
  100. /**
  101. * Module count.
  102. */
  103. @JsonProperty(value = "properties.moduleCount")
  104. private Integer moduleCount;
  105. /**
  106. * Thread count.
  107. */
  108. @JsonProperty(value = "properties.threadCount")
  109. private Integer threadCount;
  110. /**
  111. * Start time.
  112. */
  113. @JsonProperty(value = "properties.startTime")
  114. private DateTime startTime;
  115. /**
  116. * Total CPU time.
  117. */
  118. @JsonProperty(value = "properties.totalProcessorTime")
  119. private String totalProcessorTime;
  120. /**
  121. * User CPU time.
  122. */
  123. @JsonProperty(value = "properties.userProcessorTime")
  124. private String userProcessorTime;
  125. /**
  126. * Privileged CPU time.
  127. */
  128. @JsonProperty(value = "properties.privilegedProcessorTime")
  129. private String privilegedProcessorTime;
  130. /**
  131. * Working set.
  132. */
  133. @JsonProperty(value = "properties.workingSet64")
  134. private Long workingSet64;
  135. /**
  136. * Peak working set.
  137. */
  138. @JsonProperty(value = "properties.peakWorkingSet64")
  139. private Long peakWorkingSet64;
  140. /**
  141. * Private memory size.
  142. */
  143. @JsonProperty(value = "properties.privateMemorySize64")
  144. private Long privateMemorySize64;
  145. /**
  146. * Virtual memory size.
  147. */
  148. @JsonProperty(value = "properties.virtualMemorySize64")
  149. private Long virtualMemorySize64;
  150. /**
  151. * Peak virtual memory usage.
  152. */
  153. @JsonProperty(value = "properties.peakVirtualMemorySize64")
  154. private Long peakVirtualMemorySize64;
  155. /**
  156. * Paged system memory.
  157. */
  158. @JsonProperty(value = "properties.pagedSystemMemorySize64")
  159. private Long pagedSystemMemorySize64;
  160. /**
  161. * Non-paged system memory.
  162. */
  163. @JsonProperty(value = "properties.nonpagedSystemMemorySize64")
  164. private Long nonpagedSystemMemorySize64;
  165. /**
  166. * Paged memory.
  167. */
  168. @JsonProperty(value = "properties.pagedMemorySize64")
  169. private Long pagedMemorySize64;
  170. /**
  171. * Peak paged memory.
  172. */
  173. @JsonProperty(value = "properties.peakPagedMemorySize64")
  174. private Long peakPagedMemorySize64;
  175. /**
  176. * Time stamp.
  177. */
  178. @JsonProperty(value = "properties.timeStamp")
  179. private DateTime timeStamp;
  180. /**
  181. * List of environment variables.
  182. */
  183. @JsonProperty(value = "properties.environmentVariables")
  184. private Map<String, String> environmentVariables;
  185. /**
  186. * Is this the SCM site?.
  187. */
  188. @JsonProperty(value = "properties.isScmSite")
  189. private Boolean isScmSite;
  190. /**
  191. * Is this a Web Job?.
  192. */
  193. @JsonProperty(value = "properties.isWebJob")
  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 processInfoId value
  204. */
  205. public Integer processInfoId() {
  206. return this.processInfoId;
  207. }
  208. /**
  209. * Set aRM Identifier for deployment.
  210. *
  211. * @param processInfoId the processInfoId value to set
  212. * @return the ProcessInfoInner object itself.
  213. */
  214. public ProcessInfoInner withProcessInfoId(Integer processInfoId) {
  215. this.processInfoId = processInfoId;
  216. return this;
  217. }
  218. /**
  219. * Get deployment name.
  220. *
  221. * @return the processInfoName value
  222. */
  223. public String processInfoName() {
  224. return this.processInfoName;
  225. }
  226. /**
  227. * Set deployment name.
  228. *
  229. * @param processInfoName the processInfoName value to set
  230. * @return the ProcessInfoInner object itself.
  231. */
  232. public ProcessInfoInner withProcessInfoName(String processInfoName) {
  233. this.processInfoName = processInfoName;
  234. return this;
  235. }
  236. /**
  237. * Get hRef URI.
  238. *
  239. * @return the href value
  240. */
  241. public String href() {
  242. return this.href;
  243. }
  244. /**
  245. * Set hRef URI.
  246. *
  247. * @param href the href value to set
  248. * @return the ProcessInfoInner object itself.
  249. */
  250. public ProcessInfoInner withHref(String href) {
  251. this.href = href;
  252. return this;
  253. }
  254. /**
  255. * Get minidump URI.
  256. *
  257. * @return the miniDump value
  258. */
  259. public String miniDump() {
  260. return this.miniDump;
  261. }
  262. /**
  263. * Set minidump URI.
  264. *
  265. * @param miniDump the miniDump value to set
  266. * @return the ProcessInfoInner object itself.
  267. */
  268. public ProcessInfoInner withMiniDump(String miniDump) {
  269. this.miniDump = miniDump;
  270. return this;
  271. }
  272. /**
  273. * Get is profile running?.
  274. *
  275. * @return the isProfileRunning value
  276. */
  277. public Boolean isProfileRunning() {
  278. return this.isProfileRunning;
  279. }
  280. /**
  281. * Set is profile running?.
  282. *
  283. * @param isProfileRunning the isProfileRunning value to set
  284. * @return the ProcessInfoInner object itself.
  285. */
  286. public ProcessInfoInner withIsProfileRunning(Boolean isProfileRunning) {
  287. this.isProfileRunning = isProfileRunning;
  288. return this;
  289. }
  290. /**
  291. * Get is the IIS Profile running?.
  292. *
  293. * @return the isIisProfileRunning value
  294. */
  295. public Boolean isIisProfileRunning() {
  296. return this.isIisProfileRunning;
  297. }
  298. /**
  299. * Set is the IIS Profile running?.
  300. *
  301. * @param isIisProfileRunning the isIisProfileRunning value to set
  302. * @return the ProcessInfoInner object itself.
  303. */
  304. public ProcessInfoInner withIsIisProfileRunning(Boolean isIisProfileRunning) {
  305. this.isIisProfileRunning = isIisProfileRunning;
  306. return this;
  307. }
  308. /**
  309. * Get iIS Profile timeout (seconds).
  310. *
  311. * @return the iisProfileTimeoutInSeconds value
  312. */
  313. public Double iisProfileTimeoutInSeconds() {
  314. return this.iisProfileTimeoutInSeconds;
  315. }
  316. /**
  317. * Set iIS Profile timeout (seconds).
  318. *
  319. * @param iisProfileTimeoutInSeconds the iisProfileTimeoutInSeconds value to set
  320. * @return the ProcessInfoInner object itself.
  321. */
  322. public ProcessInfoInner withIisProfileTimeoutInSeconds(Double iisProfileTimeoutInSeconds) {
  323. this.iisProfileTimeoutInSeconds = iisProfileTimeoutInSeconds;
  324. return this;
  325. }
  326. /**
  327. * Get parent process.
  328. *
  329. * @return the parent value
  330. */
  331. public String parent() {
  332. return this.parent;
  333. }
  334. /**
  335. * Set parent process.
  336. *
  337. * @param parent the parent value to set
  338. * @return the ProcessInfoInner object itself.
  339. */
  340. public ProcessInfoInner withParent(String parent) {
  341. this.parent = parent;
  342. return this;
  343. }
  344. /**
  345. * Get child process list.
  346. *
  347. * @return the children value
  348. */
  349. public List<String> children() {
  350. return this.children;
  351. }
  352. /**
  353. * Set child process list.
  354. *
  355. * @param children the children value to set
  356. * @return the ProcessInfoInner object itself.
  357. */
  358. public ProcessInfoInner withChildren(List<String> children) {
  359. this.children = children;
  360. return this;
  361. }
  362. /**
  363. * Get thread list.
  364. *
  365. * @return the threads value
  366. */
  367. public List<ProcessThreadInfoInner> threads() {
  368. return this.threads;
  369. }
  370. /**
  371. * Set thread list.
  372. *
  373. * @param threads the threads value to set
  374. * @return the ProcessInfoInner object itself.
  375. */
  376. public ProcessInfoInner withThreads(List<ProcessThreadInfoInner> threads) {
  377. this.threads = threads;
  378. return this;
  379. }
  380. /**
  381. * Get list of open files.
  382. *
  383. * @return the openFileHandles value
  384. */
  385. public List<String> openFileHandles() {
  386. return this.openFileHandles;
  387. }
  388. /**
  389. * Set list of open files.
  390. *
  391. * @param openFileHandles the openFileHandles value to set
  392. * @return the ProcessInfoInner object itself.
  393. */
  394. public ProcessInfoInner withOpenFileHandles(List<String> openFileHandles) {
  395. this.openFileHandles = openFileHandles;
  396. return this;
  397. }
  398. /**
  399. * Get list of modules.
  400. *
  401. * @return the modules value
  402. */
  403. public List<ProcessModuleInfoInner> modules() {
  404. return this.modules;
  405. }
  406. /**
  407. * Set list of modules.
  408. *
  409. * @param modules the modules value to set
  410. * @return the ProcessInfoInner object itself.
  411. */
  412. public ProcessInfoInner withModules(List<ProcessModuleInfoInner> modules) {
  413. this.modules = modules;
  414. return this;
  415. }
  416. /**
  417. * Get file name of this process.
  418. *
  419. * @return the fileName value
  420. */
  421. public String fileName() {
  422. return this.fileName;
  423. }
  424. /**
  425. * Set file name of this process.
  426. *
  427. * @param fileName the fileName value to set
  428. * @return the ProcessInfoInner object itself.
  429. */
  430. public ProcessInfoInner withFileName(String fileName) {
  431. this.fileName = fileName;
  432. return this;
  433. }
  434. /**
  435. * Get command line.
  436. *
  437. * @return the commandLine value
  438. */
  439. public String commandLine() {
  440. return this.commandLine;
  441. }
  442. /**
  443. * Set command line.
  444. *
  445. * @param commandLine the commandLine value to set
  446. * @return the ProcessInfoInner object itself.
  447. */
  448. public ProcessInfoInner withCommandLine(String commandLine) {
  449. this.commandLine = commandLine;
  450. return this;
  451. }
  452. /**
  453. * Get user name.
  454. *
  455. * @return the userName value
  456. */
  457. public String userName() {
  458. return this.userName;
  459. }
  460. /**
  461. * Set user name.
  462. *
  463. * @param userName the userName value to set
  464. * @return the ProcessInfoInner object itself.
  465. */
  466. public ProcessInfoInner withUserName(String userName) {
  467. this.userName = userName;
  468. return this;
  469. }
  470. /**
  471. * Get handle count.
  472. *
  473. * @return the handleCount value
  474. */
  475. public Integer handleCount() {
  476. return this.handleCount;
  477. }
  478. /**
  479. * Set handle count.
  480. *
  481. * @param handleCount the handleCount value to set
  482. * @return the ProcessInfoInner object itself.
  483. */
  484. public ProcessInfoInner withHandleCount(Integer handleCount) {
  485. this.handleCount = handleCount;
  486. return this;
  487. }
  488. /**
  489. * Get module count.
  490. *
  491. * @return the moduleCount value
  492. */
  493. public Integer moduleCount() {
  494. return this.moduleCount;
  495. }
  496. /**
  497. * Set module count.
  498. *
  499. * @param moduleCount the moduleCount value to set
  500. * @return the ProcessInfoInner object itself.
  501. */
  502. public ProcessInfoInner withModuleCount(Integer moduleCount) {
  503. this.moduleCount = moduleCount;
  504. return this;
  505. }
  506. /**
  507. * Get thread count.
  508. *
  509. * @return the threadCount value
  510. */
  511. public Integer threadCount() {
  512. return this.threadCount;
  513. }
  514. /**
  515. * Set thread count.
  516. *
  517. * @param threadCount the threadCount value to set
  518. * @return the ProcessInfoInner object itself.
  519. */
  520. public ProcessInfoInner withThreadCount(Integer threadCount) {
  521. this.threadCount = threadCount;
  522. return this;
  523. }
  524. /**
  525. * Get start time.
  526. *
  527. * @return the startTime value
  528. */
  529. public DateTime startTime() {
  530. return this.startTime;
  531. }
  532. /**
  533. * Set start time.
  534. *
  535. * @param startTime the startTime value to set
  536. * @return the ProcessInfoInner object itself.
  537. */
  538. public ProcessInfoInner withStartTime(DateTime startTime) {
  539. this.startTime = startTime;
  540. return this;
  541. }
  542. /**
  543. * Get total CPU time.
  544. *
  545. * @return the totalProcessorTime value
  546. */
  547. public String totalProcessorTime() {
  548. return this.totalProcessorTime;
  549. }
  550. /**
  551. * Set total CPU time.
  552. *
  553. * @param totalProcessorTime the totalProcessorTime value to set
  554. * @return the ProcessInfoInner object itself.
  555. */
  556. public ProcessInfoInner withTotalProcessorTime(String totalProcessorTime) {
  557. this.totalProcessorTime = totalProcessorTime;
  558. return this;
  559. }
  560. /**
  561. * Get user CPU time.
  562. *
  563. * @return the userProcessorTime value
  564. */
  565. public String userProcessorTime() {
  566. return this.userProcessorTime;
  567. }
  568. /**
  569. * Set user CPU time.
  570. *
  571. * @param userProcessorTime the userProcessorTime value to set
  572. * @return the ProcessInfoInner object itself.
  573. */
  574. public ProcessInfoInner withUserProcessorTime(String userProcessorTime) {
  575. this.userProcessorTime = userProcessorTime;
  576. return this;
  577. }
  578. /**
  579. * Get privileged CPU time.
  580. *
  581. * @return the privilegedProcessorTime value
  582. */
  583. public String privilegedProcessorTime() {
  584. return this.privilegedProcessorTime;
  585. }
  586. /**
  587. * Set privileged CPU time.
  588. *
  589. * @param privilegedProcessorTime the privilegedProcessorTime value to set
  590. * @return the ProcessInfoInner object itself.
  591. */
  592. public ProcessInfoInner withPrivilegedProcessorTime(String privilegedProcessorTime) {
  593. this.privilegedProcessorTime = privilegedProcessorTime;
  594. return this;
  595. }
  596. /**
  597. * Get working set.
  598. *
  599. * @return the workingSet64 value
  600. */
  601. public Long workingSet64() {
  602. return this.workingSet64;
  603. }
  604. /**
  605. * Set working set.
  606. *
  607. * @param workingSet64 the workingSet64 value to set
  608. * @return the ProcessInfoInner object itself.
  609. */
  610. public ProcessInfoInner withWorkingSet64(Long workingSet64) {
  611. this.workingSet64 = workingSet64;
  612. return this;
  613. }
  614. /**
  615. * Get peak working set.
  616. *
  617. * @return the peakWorkingSet64 value
  618. */
  619. public Long peakWorkingSet64() {
  620. return this.peakWorkingSet64;
  621. }
  622. /**
  623. * Set peak working set.
  624. *
  625. * @param peakWorkingSet64 the peakWorkingSet64 value to set
  626. * @return the ProcessInfoInner object itself.
  627. */
  628. public ProcessInfoInner withPeakWorkingSet64(Long peakWorkingSet64) {
  629. this.peakWorkingSet64 = peakWorkingSet64;
  630. return this;
  631. }
  632. /**
  633. * Get private memory size.
  634. *
  635. * @return the privateMemorySize64 value
  636. */
  637. public Long privateMemorySize64() {
  638. return this.privateMemorySize64;
  639. }
  640. /**
  641. * Set private memory size.
  642. *
  643. * @param privateMemorySize64 the privateMemorySize64 value to set
  644. * @return the ProcessInfoInner object itself.
  645. */
  646. public ProcessInfoInner withPrivateMemorySize64(Long privateMemorySize64) {
  647. this.privateMemorySize64 = privateMemorySize64;
  648. return this;
  649. }
  650. /**
  651. * Get virtual memory size.
  652. *
  653. * @return the virtualMemorySize64 value
  654. */
  655. public Long virtualMemorySize64() {
  656. return this.virtualMemorySize64;
  657. }
  658. /**
  659. * Set virtual memory size.
  660. *
  661. * @param virtualMemorySize64 the virtualMemorySize64 value to set
  662. * @return the ProcessInfoInner object itself.
  663. */
  664. public ProcessInfoInner withVirtualMemorySize64(Long virtualMemorySize64) {
  665. this.virtualMemorySize64 = virtualMemorySize64;
  666. return this;
  667. }
  668. /**
  669. * Get peak virtual memory usage.
  670. *
  671. * @return the peakVirtualMemorySize64 value
  672. */
  673. public Long peakVirtualMemorySize64() {
  674. return this.peakVirtualMemorySize64;
  675. }
  676. /**
  677. * Set peak virtual memory usage.
  678. *
  679. * @param peakVirtualMemorySize64 the peakVirtualMemorySize64 value to set
  680. * @return the ProcessInfoInner object itself.
  681. */
  682. public ProcessInfoInner withPeakVirtualMemorySize64(Long peakVirtualMemorySize64) {
  683. this.peakVirtualMemorySize64 = peakVirtualMemorySize64;
  684. return this;
  685. }
  686. /**
  687. * Get paged system memory.
  688. *
  689. * @return the pagedSystemMemorySize64 value
  690. */
  691. public Long pagedSystemMemorySize64() {
  692. return this.pagedSystemMemorySize64;
  693. }
  694. /**
  695. * Set paged system memory.
  696. *
  697. * @param pagedSystemMemorySize64 the pagedSystemMemorySize64 value to set
  698. * @return the ProcessInfoInner object itself.
  699. */
  700. public ProcessInfoInner withPagedSystemMemorySize64(Long pagedSystemMemorySize64) {
  701. this.pagedSystemMemorySize64 = pagedSystemMemorySize64;
  702. return this;
  703. }
  704. /**
  705. * Get non-paged system memory.
  706. *
  707. * @return the nonpagedSystemMemorySize64 value
  708. */
  709. public Long nonpagedSystemMemorySize64() {
  710. return this.nonpagedSystemMemorySize64;
  711. }
  712. /**
  713. * Set non-paged system memory.
  714. *
  715. * @param nonpagedSystemMemorySize64 the nonpagedSystemMemorySize64 value to set
  716. * @return the ProcessInfoInner object itself.
  717. */
  718. public ProcessInfoInner withNonpagedSystemMemorySize64(Long nonpagedSystemMemorySize64) {
  719. this.nonpagedSystemMemorySize64 = nonpagedSystemMemorySize64;
  720. return this;
  721. }
  722. /**
  723. * Get paged memory.
  724. *
  725. * @return the pagedMemorySize64 value
  726. */
  727. public Long pagedMemorySize64() {
  728. return this.pagedMemorySize64;
  729. }
  730. /**
  731. * Set paged memory.
  732. *
  733. * @param pagedMemorySize64 the pagedMemorySize64 value to set
  734. * @return the ProcessInfoInner object itself.
  735. */
  736. public ProcessInfoInner withPagedMemorySize64(Long pagedMemorySize64) {
  737. this.pagedMemorySize64 = pagedMemorySize64;
  738. return this;
  739. }
  740. /**
  741. * Get peak paged memory.
  742. *
  743. * @return the peakPagedMemorySize64 value
  744. */
  745. public Long peakPagedMemorySize64() {
  746. return this.peakPagedMemorySize64;
  747. }
  748. /**
  749. * Set peak paged memory.
  750. *
  751. * @param peakPagedMemorySize64 the peakPagedMemorySize64 value to set
  752. * @return the ProcessInfoInner object itself.
  753. */
  754. public ProcessInfoInner withPeakPagedMemorySize64(Long peakPagedMemorySize64) {
  755. this.peakPagedMemorySize64 = peakPagedMemorySize64;
  756. return this;
  757. }
  758. /**
  759. * Get time stamp.
  760. *
  761. * @return the timeStamp value
  762. */
  763. public DateTime timeStamp() {
  764. return this.timeStamp;
  765. }
  766. /**
  767. * Set time stamp.
  768. *
  769. * @param timeStamp the timeStamp value to set
  770. * @return the ProcessInfoInner object itself.
  771. */
  772. public ProcessInfoInner withTimeStamp(DateTime timeStamp) {
  773. this.timeStamp = timeStamp;
  774. return this;
  775. }
  776. /**
  777. * Get list of environment variables.
  778. *
  779. * @return the environmentVariables value
  780. */
  781. public Map<String, String> environmentVariables() {
  782. return this.environmentVariables;
  783. }
  784. /**
  785. * Set list of environment variables.
  786. *
  787. * @param environmentVariables the environmentVariables value to set
  788. * @return the ProcessInfoInner object itself.
  789. */
  790. public ProcessInfoInner withEnvironmentVariables(Map<String, String> environmentVariables) {
  791. this.environmentVariables = environmentVariables;
  792. return this;
  793. }
  794. /**
  795. * Get is this the SCM site?.
  796. *
  797. * @return the isScmSite value
  798. */
  799. public Boolean isScmSite() {
  800. return this.isScmSite;
  801. }
  802. /**
  803. * Set is this the SCM site?.
  804. *
  805. * @param isScmSite the isScmSite value to set
  806. * @return the ProcessInfoInner object itself.
  807. */
  808. public ProcessInfoInner withIsScmSite(Boolean isScmSite) {
  809. this.isScmSite = isScmSite;
  810. return this;
  811. }
  812. /**
  813. * Get is this a Web Job?.
  814. *
  815. * @return the isWebJob value
  816. */
  817. public Boolean isWebJob() {
  818. return this.isWebJob;
  819. }
  820. /**
  821. * Set is this a Web Job?.
  822. *
  823. * @param isWebJob the isWebJob value to set
  824. * @return the ProcessInfoInner object itself.
  825. */
  826. public ProcessInfoInner withIsWebJob(Boolean isWebJob) {
  827. this.isWebJob = isWebJob;
  828. return this;
  829. }
  830. /**
  831. * Get description of process.
  832. *
  833. * @return the description value
  834. */
  835. public String description() {
  836. return this.description;
  837. }
  838. /**
  839. * Set description of process.
  840. *
  841. * @param description the description value to set
  842. * @return the ProcessInfoInner object itself.
  843. */
  844. public ProcessInfoInner withDescription(String description) {
  845. this.description = description;
  846. return this;
  847. }
  848. }