guest_policies.proto 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562
  1. // Copyright 2020 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.osconfig.agentendpoint.v1beta;
  16. import "google/api/field_behavior.proto";
  17. option go_package = "google.golang.org/genproto/googleapis/cloud/osconfig/agentendpoint/v1beta;agentendpoint";
  18. option java_outer_classname = "GuestPolicies";
  19. option java_package = "com.google.cloud.osconfig.agentendpoint.v1beta";
  20. option php_namespace = "Google\\Cloud\\OsConfig\\V1beta";
  21. // The desired state that the OS Config agent will maintain on the VM.
  22. enum DesiredState {
  23. // The default is to ensure the package is installed.
  24. DESIRED_STATE_UNSPECIFIED = 0;
  25. // The agent ensures that the package is installed.
  26. INSTALLED = 1;
  27. // The agent ensures that the package is installed and
  28. // periodically checks for and install any updates.
  29. UPDATED = 2;
  30. // The agent ensures that the package is not installed and uninstall it
  31. // if detected.
  32. REMOVED = 3;
  33. }
  34. // Package is a reference to the software package to be installed or removed.
  35. // The agent on the VM instance uses the system package manager to apply the
  36. // config.
  37. //
  38. //
  39. // These are the commands that the agent uses to install or remove
  40. // packages.
  41. //
  42. // Apt
  43. // install: `apt-get update && apt-get -y install package1 package2 package3`
  44. // remove: `apt-get -y remove package1 package2 package3`
  45. //
  46. // Yum
  47. // install: `yum -y install package1 package2 package3`
  48. // remove: `yum -y remove package1 package2 package3`
  49. //
  50. // Zypper
  51. // install: `zypper install package1 package2 package3`
  52. // remove: `zypper rm package1 package2`
  53. //
  54. // Googet
  55. // install: `googet -noconfirm install package1 package2 package3`
  56. // remove: `googet -noconfirm remove package1 package2 package3`
  57. message Package {
  58. // Types of package managers that may be used to manage this package.
  59. enum Manager {
  60. // The default behavior is ANY.
  61. MANAGER_UNSPECIFIED = 0;
  62. // Apply this package config using the default system package manager.
  63. ANY = 1;
  64. // Apply this package config only if Apt is available on the system.
  65. APT = 2;
  66. // Apply this package config only if Yum is available on the system.
  67. YUM = 3;
  68. // Apply this package config only if Zypper is available on the system.
  69. ZYPPER = 4;
  70. // Apply this package config only if GooGet is available on the system.
  71. GOO = 5;
  72. }
  73. // The name of the package. A package is uniquely identified for conflict
  74. // validation by checking the package name and the manager(s) that the
  75. // package targets.
  76. string name = 1;
  77. // The desired_state the agent should maintain for this package. The
  78. // default is to ensure the package is installed.
  79. DesiredState desired_state = 2;
  80. // Type of package manager that can be used to install this package.
  81. // If a system does not have the package manager, the package is not
  82. // installed or removed no error message is returned. By default,
  83. // or if you specify `ANY`,
  84. // the agent attempts to install and remove this package using the default
  85. // package manager. This is useful when creating a policy that applies to
  86. // different types of systems.
  87. //
  88. // The default behavior is ANY.
  89. Manager manager = 3;
  90. }
  91. // Represents a single Apt package repository. This repository is added to
  92. // a repo file that is stored at
  93. // `/etc/apt/sources.list.d/google_osconfig.list`.
  94. message AptRepository {
  95. // Type of archive.
  96. enum ArchiveType {
  97. // Unspecified.
  98. ARCHIVE_TYPE_UNSPECIFIED = 0;
  99. // DEB indicates that the archive contains binary files.
  100. DEB = 1;
  101. // DEB_SRC indicates that the archive contains source files.
  102. DEB_SRC = 2;
  103. }
  104. // Type of archive files in this repository. The default behavior is DEB.
  105. ArchiveType archive_type = 1;
  106. // URI for this repository.
  107. string uri = 2;
  108. // Distribution of this repository.
  109. string distribution = 3;
  110. // List of components for this repository. Must contain at least one item.
  111. repeated string components = 4;
  112. // URI of the key file for this repository. The agent maintains
  113. // a keyring at `/etc/apt/trusted.gpg.d/osconfig_agent_managed.gpg` containing
  114. // all the keys in any applied guest policy.
  115. string gpg_key = 5;
  116. }
  117. // Represents a single Yum package repository. This repository is added to a
  118. // repo file that is stored at `/etc/yum.repos.d/google_osconfig.repo`.
  119. message YumRepository {
  120. // A one word, unique name for this repository. This is
  121. // the `repo id` in the Yum config file and also the `display_name` if
  122. // `display_name` is omitted. This id is also used as the unique identifier
  123. // when checking for guest policy conflicts.
  124. string id = 1;
  125. // The display name of the repository.
  126. string display_name = 2;
  127. // The location of the repository directory.
  128. string base_url = 3;
  129. // URIs of GPG keys.
  130. repeated string gpg_keys = 4;
  131. }
  132. // Represents a single Zypper package repository. This repository is added to a
  133. // repo file that is stored at `/etc/zypp/repos.d/google_osconfig.repo`.
  134. message ZypperRepository {
  135. // A one word, unique name for this repository. This is
  136. // the `repo id` in the zypper config file and also the `display_name` if
  137. // `display_name` is omitted. This id is also used as the unique identifier
  138. // when checking for guest policy conflicts.
  139. string id = 1;
  140. // The display name of the repository.
  141. string display_name = 2;
  142. // The location of the repository directory.
  143. string base_url = 3;
  144. // URIs of GPG keys.
  145. repeated string gpg_keys = 4;
  146. }
  147. // Represents a Goo package repository. These is added to a repo file
  148. // that is stored at C:/ProgramData/GooGet/repos/google_osconfig.repo.
  149. message GooRepository {
  150. // The name of the repository.
  151. string name = 1;
  152. // The url of the repository.
  153. string url = 2;
  154. }
  155. // A package repository.
  156. message PackageRepository {
  157. // A specific type of repository.
  158. oneof repository {
  159. // An Apt Repository.
  160. AptRepository apt = 1;
  161. // A Yum Repository.
  162. YumRepository yum = 2;
  163. // A Zypper Repository.
  164. ZypperRepository zypper = 3;
  165. // A Goo Repository.
  166. GooRepository goo = 4;
  167. }
  168. }
  169. // A software recipe is a set of instructions for installing and configuring a
  170. // piece of software. It consists of a set of artifacts that are
  171. // downloaded, and a set of steps that install, configure, and/or update the
  172. // software.
  173. //
  174. // Recipes support installing and updating software from artifacts in the
  175. // following formats:
  176. // Zip archive, Tar archive, Windows MSI, Debian package, and RPM package.
  177. //
  178. // Additionally, recipes support executing a script (either defined in a file or
  179. // directly in this api) in bash, sh, cmd, and powershell.
  180. //
  181. // Updating a software recipe
  182. //
  183. // If a recipe is assigned to an instance and there is a recipe with the same
  184. // name but a lower version already installed and the assigned state
  185. // of the recipe is `INSTALLED_KEEP_UPDATED`, then the recipe is updated to
  186. // the new version.
  187. //
  188. // Script Working Directories
  189. //
  190. // Each script or execution step is run in its own temporary directory which
  191. // is deleted after completing the step.
  192. message SoftwareRecipe {
  193. // Specifies a resource to be used in the recipe.
  194. message Artifact {
  195. // Specifies an artifact available via some URI.
  196. message Remote {
  197. // URI from which to fetch the object. It should contain both the protocol
  198. // and path following the format {protocol}://{location}.
  199. string uri = 1;
  200. // Must be provided if `allow_insecure` is `false`.
  201. // SHA256 checksum in hex format, to compare to the checksum of the
  202. // artifact. If the checksum is not empty and it doesn't match the
  203. // artifact then the recipe installation fails before running any of the
  204. // steps.
  205. string checksum = 2;
  206. }
  207. // Specifies an artifact available as a Cloud Storage object.
  208. message Gcs {
  209. // Bucket of the Cloud Storage object.
  210. // Given an example URL:
  211. // `https://storage.googleapis.com/my-bucket/foo/bar#1234567`
  212. // this value would be `my-bucket`.
  213. string bucket = 1;
  214. // Name of the Cloud Storage object.
  215. // As specified [here]
  216. // (https://cloud.google.com/storage/docs/naming#objectnames)
  217. // Given an example URL:
  218. // `https://storage.googleapis.com/my-bucket/foo/bar#1234567`
  219. // this value would be `foo/bar`.
  220. string object = 2;
  221. // Must be provided if allow_insecure is false.
  222. // Generation number of the Cloud Storage object.
  223. // `https://storage.googleapis.com/my-bucket/foo/bar#1234567`
  224. // this value would be `1234567`.
  225. int64 generation = 3;
  226. }
  227. // Id of the artifact, which the installation and update steps of this
  228. // recipe can reference. Artifacts in a recipe cannot have the same id.
  229. string id = 1;
  230. // A specific type of artifact.
  231. oneof artifact {
  232. // A generic remote artifact.
  233. Remote remote = 2;
  234. // A Cloud Storage artifact.
  235. Gcs gcs = 3;
  236. }
  237. // Defaults to false. When false, recipes are subject to validations
  238. // based on the artifact type:
  239. //
  240. // Remote: A checksum must be specified, and only protocols with
  241. // transport-layer security are permitted.
  242. // GCS: An object generation number must be specified.
  243. bool allow_insecure = 4;
  244. }
  245. // An action that can be taken as part of installing or updating a recipe.
  246. message Step {
  247. // Copies the artifact to the specified path on the instance.
  248. message CopyFile {
  249. // The id of the relevant artifact in the recipe.
  250. string artifact_id = 1;
  251. // The absolute path on the instance to put the file.
  252. string destination = 2;
  253. // Whether to allow this step to overwrite existing files. If this is
  254. // false and the file already exists the file is not overwritten
  255. // and the step is considered a success. Defaults to false.
  256. bool overwrite = 3;
  257. // Consists of three octal digits which represent, in
  258. // order, the permissions of the owner, group, and other users for the
  259. // file (similarly to the numeric mode used in the linux chmod utility).
  260. // Each digit represents a three bit number with the 4 bit
  261. // corresponding to the read permissions, the 2 bit corresponds to the
  262. // write bit, and the one bit corresponds to the execute permission.
  263. // Default behavior is 755.
  264. //
  265. // Below are some examples of permissions and their associated values:
  266. // read, write, and execute: 7
  267. // read and execute: 5
  268. // read and write: 6
  269. // read only: 4
  270. string permissions = 4;
  271. }
  272. // Extracts an archive of the type specified in the specified directory.
  273. message ExtractArchive {
  274. // Specifying the type of archive.
  275. enum ArchiveType {
  276. // Indicates that the archive type isn't specified.
  277. ARCHIVE_TYPE_UNSPECIFIED = 0;
  278. // Indicates that the archive is a tar archive with no encryption.
  279. TAR = 1;
  280. // Indicates that the archive is a tar archive with gzip encryption.
  281. TAR_GZIP = 2;
  282. // Indicates that the archive is a tar archive with bzip encryption.
  283. TAR_BZIP = 3;
  284. // Indicates that the archive is a tar archive with lzma encryption.
  285. TAR_LZMA = 4;
  286. // Indicates that the archive is a tar archive with xz encryption.
  287. TAR_XZ = 5;
  288. // Indicates that the archive is a zip archive.
  289. ZIP = 11;
  290. }
  291. // The id of the relevant artifact in the recipe.
  292. string artifact_id = 1;
  293. // Directory to extract archive to.
  294. // Defaults to `/` on Linux or `C:\` on Windows.
  295. string destination = 2;
  296. // The type of the archive to extract.
  297. ArchiveType type = 3;
  298. }
  299. // Installs an MSI file.
  300. message InstallMsi {
  301. // The id of the relevant artifact in the recipe.
  302. string artifact_id = 1;
  303. // The flags to use when installing the MSI
  304. // defaults to ["/i"] (i.e. the install flag).
  305. repeated string flags = 2;
  306. // Return codes that indicate that the software installed or updated
  307. // successfully. Behaviour defaults to [0]
  308. repeated int32 allowed_exit_codes = 3;
  309. }
  310. // Installs a deb via dpkg.
  311. message InstallDpkg {
  312. // The id of the relevant artifact in the recipe.
  313. string artifact_id = 1;
  314. }
  315. // Installs an rpm file via the rpm utility.
  316. message InstallRpm {
  317. // The id of the relevant artifact in the recipe.
  318. string artifact_id = 1;
  319. }
  320. // Executes an artifact or local file.
  321. message ExecFile {
  322. // Location of the file to execute.
  323. oneof location_type {
  324. // The id of the relevant artifact in the recipe.
  325. string artifact_id = 1;
  326. // The absolute path of the file on the local filesystem.
  327. string local_path = 2;
  328. }
  329. // Arguments to be passed to the provided executable.
  330. repeated string args = 3;
  331. // Defaults to [0]. A list of possible return values that the program
  332. // can return to indicate a success.
  333. repeated int32 allowed_exit_codes = 4;
  334. }
  335. // Runs a script through an interpreter.
  336. message RunScript {
  337. // The interpreter used to execute a script.
  338. enum Interpreter {
  339. // Default value for ScriptType.
  340. INTERPRETER_UNSPECIFIED = 0;
  341. // Indicates that the script is run with `/bin/sh` on Linux and `cmd`
  342. // on windows.
  343. SHELL = 1;
  344. // Indicates that the script is run with powershell.
  345. POWERSHELL = 3;
  346. }
  347. // The shell script to be executed.
  348. string script = 1;
  349. // Return codes that indicate that the software installed or updated
  350. // successfully. Behaviour defaults to [0]
  351. repeated int32 allowed_exit_codes = 2;
  352. // The script interpreter to use to run the script. If no interpreter is
  353. // specified the script is executed directly, which likely
  354. // only succeed for scripts with
  355. // [shebang lines](https://en.wikipedia.org/wiki/Shebang_(Unix)).
  356. Interpreter interpreter = 3;
  357. }
  358. // A specific type of step.
  359. oneof step {
  360. // Copies a file onto the instance.
  361. CopyFile file_copy = 1;
  362. // Extracts an archive into the specified directory.
  363. ExtractArchive archive_extraction = 2;
  364. // Installs an MSI file.
  365. InstallMsi msi_installation = 3;
  366. // Installs a deb file via dpkg.
  367. InstallDpkg dpkg_installation = 4;
  368. // Installs an rpm file via the rpm utility.
  369. InstallRpm rpm_installation = 5;
  370. // Executes an artifact or local file.
  371. ExecFile file_exec = 6;
  372. // Runs commands in a shell.
  373. RunScript script_run = 7;
  374. }
  375. }
  376. // Unique identifier for the recipe. Only one recipe with a given name is
  377. // installed on an instance.
  378. //
  379. // Names are also used to identify resources which helps to determine whether
  380. // guest policies have conflicts. This means that requests to create multiple
  381. // recipes with the same name and version are rejected since they
  382. // could potentially have conflicting assignments.
  383. string name = 1;
  384. // The version of this software recipe. Version can be up to 4 period
  385. // separated numbers (e.g. 12.34.56.78).
  386. string version = 2;
  387. // Resources available to be used in the steps in the recipe.
  388. repeated Artifact artifacts = 3;
  389. // Actions to be taken for installing this recipe. On failure it stops
  390. // executing steps and does not attempt another installation. Any steps taken
  391. // (including partially completed steps) are not rolled back. Install steps
  392. // must be specified and are used on first installation.
  393. repeated Step install_steps = 4;
  394. // Actions to be taken for updating this recipe. On failure it stops
  395. // executing steps and does not attempt another update for this recipe. Any
  396. // steps taken (including partially completed steps) are not rolled back.
  397. // Upgrade steps are not mandatory and are only used when upgrading.
  398. repeated Step update_steps = 5;
  399. // Default is INSTALLED. The desired state the agent should maintain for this
  400. // recipe.
  401. //
  402. // INSTALLED: The software recipe is installed on the instance but won't be
  403. // updated to new versions.
  404. // UPDATED: The software recipe is installed on the instance. The recipe is
  405. // updated to a higher version, if a higher version of
  406. // the recipe is assigned to this instance.
  407. // REMOVE: Remove is unsupported for software recipes and attempts to
  408. // create or update a recipe to the REMOVE state is rejected.
  409. DesiredState desired_state = 6;
  410. }
  411. // A request message for getting effective policy assigned to the instance.
  412. message LookupEffectiveGuestPolicyRequest {
  413. // Required. This is the GCE instance identity token described in
  414. // https://cloud.google.com/compute/docs/instances/verifying-instance-identity
  415. // where the audience is 'osconfig.googleapis.com' and the format is 'full'.
  416. string instance_id_token = 1 [(google.api.field_behavior) = REQUIRED];
  417. // Short name of the OS running on the instance. The OS Config agent only
  418. // provideS this field for targeting if OS Inventory is enabled for that
  419. // instance.
  420. string os_short_name = 2;
  421. // Version of the OS running on the instance. The OS Config agent only
  422. // provide this field for targeting if OS Inventory is enabled for that
  423. // VM instance.
  424. string os_version = 3;
  425. // Architecture of OS running on the instance. The OS Config agent only
  426. // provide this field for targeting if OS Inventory is enabled for that
  427. // instance.
  428. string os_architecture = 4;
  429. }
  430. // The effective guest policy assigned to the instance.
  431. message EffectiveGuestPolicy {
  432. // A guest policy package including its source.
  433. message SourcedPackage {
  434. // Name of the guest policy providing this config.
  435. string source = 1;
  436. // A software package to configure on the VM instance.
  437. Package package = 2;
  438. }
  439. // A guest policy package repository including its source.
  440. message SourcedPackageRepository {
  441. // Name of the guest policy providing this config.
  442. string source = 1;
  443. // A software package repository to configure on the VM instance.
  444. PackageRepository package_repository = 2;
  445. }
  446. // A guest policy recipe including its source.
  447. message SourcedSoftwareRecipe {
  448. // Name of the guest policy providing this config.
  449. string source = 1;
  450. // A software recipe to configure on the VM instance.
  451. SoftwareRecipe software_recipe = 2;
  452. }
  453. // List of package configurations assigned to the VM instance.
  454. repeated SourcedPackage packages = 1;
  455. // List of package repository configurations assigned to the VM instance.
  456. repeated SourcedPackageRepository package_repositories = 2;
  457. // List of recipes assigned to the VM instance.
  458. repeated SourcedSoftwareRecipe software_recipes = 3;
  459. }