/sdk/appservice/mgmt/src/main/java/com/azure/management/appservice/models/ProcessInfoInner.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 943 lines · 332 code · 109 blank · 502 comment · 0 complexity · a3a35621511e097a49cc2a2452887e10 MD5 · raw file

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