1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
// This file is @generated by prost-build.
/// A resource that represents a Secure Source Manager instance.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Instance {
/// Optional. A unique identifier for an instance. The name should be of the
/// format:
/// `projects/{project_number}/locations/{location_id}/instances/{instance_id}`
///
/// `project_number`: Maps to a unique int64 id assigned to each project.
///
/// `location_id`: Refers to the region where the instance will be deployed.
/// Since Secure Source Manager is a regional service, it must be one of the
/// valid GCP regions.
///
/// `instance_id`: User provided name for the instance, must be unique for a
/// project_number and location_id combination.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Output only. Create timestamp.
#[prost(message, optional, tag = "2")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. Update timestamp.
#[prost(message, optional, tag = "3")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// Optional. Labels as key value pairs.
#[prost(btree_map = "string, string", tag = "4")]
pub labels: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Optional. Private settings for private instance.
#[prost(message, optional, tag = "13")]
pub private_config: ::core::option::Option<instance::PrivateConfig>,
/// Output only. Current state of the instance.
#[prost(enumeration = "instance::State", tag = "5")]
pub state: i32,
/// Output only. An optional field providing information about the current
/// instance state.
#[prost(enumeration = "instance::StateNote", tag = "10")]
pub state_note: i32,
/// Optional. Immutable. Customer-managed encryption key name, in the format
/// projects/*/locations/*/keyRings/*/cryptoKeys/*.
#[prost(string, tag = "11")]
pub kms_key: ::prost::alloc::string::String,
/// Output only. A list of hostnames for this instance.
#[prost(message, optional, tag = "9")]
pub host_config: ::core::option::Option<instance::HostConfig>,
}
/// Nested message and enum types in `Instance`.
pub mod instance {
/// HostConfig has different instance endpoints.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct HostConfig {
/// Output only. HTML hostname.
#[prost(string, tag = "1")]
pub html: ::prost::alloc::string::String,
/// Output only. API hostname. This is the hostname to use for **Host: Data
/// Plane** endpoints.
#[prost(string, tag = "2")]
pub api: ::prost::alloc::string::String,
/// Output only. Git HTTP hostname.
#[prost(string, tag = "3")]
pub git_http: ::prost::alloc::string::String,
/// Output only. Git SSH hostname.
#[prost(string, tag = "4")]
pub git_ssh: ::prost::alloc::string::String,
}
/// PrivateConfig includes settings for private instance.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PrivateConfig {
/// Required. Immutable. Indicate if it's private instance.
#[prost(bool, tag = "1")]
pub is_private: bool,
/// Required. Immutable. CA pool resource, resource must in the format of
/// `projects/{project}/locations/{location}/caPools/{ca_pool}`.
#[prost(string, tag = "2")]
pub ca_pool: ::prost::alloc::string::String,
/// Output only. Service Attachment for HTTP, resource is in the format of
/// `projects/{project}/regions/{region}/serviceAttachments/{service_attachment}`.
#[prost(string, tag = "3")]
pub http_service_attachment: ::prost::alloc::string::String,
/// Output only. Service Attachment for SSH, resource is in the format of
/// `projects/{project}/regions/{region}/serviceAttachments/{service_attachment}`.
#[prost(string, tag = "4")]
pub ssh_service_attachment: ::prost::alloc::string::String,
}
/// Secure Source Manager instance state.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum State {
/// Not set. This should only be the case for incoming requests.
Unspecified = 0,
/// Instance is being created.
Creating = 1,
/// Instance is ready.
Active = 2,
/// Instance is being deleted.
Deleting = 3,
/// Instance is paused.
Paused = 4,
/// Instance is unknown, we are not sure if it's functioning.
Unknown = 6,
}
impl State {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
State::Unspecified => "STATE_UNSPECIFIED",
State::Creating => "CREATING",
State::Active => "ACTIVE",
State::Deleting => "DELETING",
State::Paused => "PAUSED",
State::Unknown => "UNKNOWN",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"CREATING" => Some(Self::Creating),
"ACTIVE" => Some(Self::Active),
"DELETING" => Some(Self::Deleting),
"PAUSED" => Some(Self::Paused),
"UNKNOWN" => Some(Self::Unknown),
_ => None,
}
}
}
/// Provides information about the current instance state.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum StateNote {
/// STATE_NOTE_UNSPECIFIED as the first value of State.
Unspecified = 0,
/// CMEK access is unavailable.
PausedCmekUnavailable = 1,
/// INSTANCE_RESUMING indicates that the instance was previously paused
/// and is under the process of being brought back.
InstanceResuming = 2,
}
impl StateNote {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
StateNote::Unspecified => "STATE_NOTE_UNSPECIFIED",
StateNote::PausedCmekUnavailable => "PAUSED_CMEK_UNAVAILABLE",
StateNote::InstanceResuming => "INSTANCE_RESUMING",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_NOTE_UNSPECIFIED" => Some(Self::Unspecified),
"PAUSED_CMEK_UNAVAILABLE" => Some(Self::PausedCmekUnavailable),
"INSTANCE_RESUMING" => Some(Self::InstanceResuming),
_ => None,
}
}
}
}
/// Metadata of a Secure Source Manager repository.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Repository {
/// Optional. A unique identifier for a repository. The name should be of the
/// format:
/// `projects/{project}/locations/{location_id}/repositories/{repository_id}`
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Optional. Description of the repository, which cannot exceed 500
/// characters.
#[prost(string, tag = "2")]
pub description: ::prost::alloc::string::String,
/// Optional. The name of the instance in which the repository is hosted,
/// formatted as
/// `projects/{project_number}/locations/{location_id}/instances/{instance_id}`
/// For data plane CreateRepository requests, this field is output only.
/// For control plane CreateRepository requests, this field is used as input.
#[prost(string, tag = "3")]
pub instance: ::prost::alloc::string::String,
/// Output only. Unique identifier of the repository.
#[prost(string, tag = "4")]
pub uid: ::prost::alloc::string::String,
/// Output only. Create timestamp.
#[prost(message, optional, tag = "5")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. Update timestamp.
#[prost(message, optional, tag = "6")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// Optional. This checksum is computed by the server based on the value of
/// other fields, and may be sent on update and delete requests to ensure the
/// client has an up-to-date value before proceeding.
#[prost(string, tag = "8")]
pub etag: ::prost::alloc::string::String,
/// Output only. URIs for the repository.
#[prost(message, optional, tag = "9")]
pub uris: ::core::option::Option<repository::UrIs>,
/// Input only. Initial configurations for the repository.
#[prost(message, optional, tag = "10")]
pub initial_config: ::core::option::Option<repository::InitialConfig>,
}
/// Nested message and enum types in `Repository`.
pub mod repository {
/// URIs for the repository.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UrIs {
/// Output only. HTML is the URI for user to view the repository in a
/// browser.
#[prost(string, tag = "1")]
pub html: ::prost::alloc::string::String,
/// Output only. git_https is the git HTTPS URI for git operations.
#[prost(string, tag = "2")]
pub git_https: ::prost::alloc::string::String,
/// Output only. API is the URI for API access.
#[prost(string, tag = "3")]
pub api: ::prost::alloc::string::String,
}
/// Repository initialization configuration.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct InitialConfig {
/// Default branch name of the repository.
#[prost(string, tag = "1")]
pub default_branch: ::prost::alloc::string::String,
/// List of gitignore template names user can choose from.
/// Valid values: actionscript, ada, agda, android,
/// anjuta, ansible, appcelerator-titanium, app-engine, archives,
/// arch-linux-packages, atmel-studio, autotools, backup, bazaar, bazel,
/// bitrix, bricx-cc, c, cake-php, calabash, cf-wheels, chef-cookbook,
/// clojure, cloud9, c-make, code-igniter, code-kit, code-sniffer,
/// common-lisp, composer, concrete5, coq, cordova, cpp, craft-cms, cuda,
/// cvs, d, dart, dart-editor, delphi, diff, dm, dreamweaver, dropbox,
/// drupal, drupal-7, eagle, eclipse, eiffel-studio, elisp, elixir, elm,
/// emacs, ensime, epi-server, erlang, esp-idf, espresso, exercism,
/// expression-engine, ext-js, fancy, finale, flex-builder, force-dot-com,
/// fortran, fuel-php, gcov, git-book, gnome-shell-extension, go, godot, gpg,
/// gradle, grails, gwt, haskell, hugo, iar-ewarm, idris, igor-pro, images,
/// infor-cms, java, jboss, jboss-4, jboss-6, jdeveloper, jekyll,
/// jenkins-home, jenv, jet-brains, jigsaw, joomla, julia, jupyter-notebooks,
/// kate, kdevelop4, kentico, ki-cad, kohana, kotlin, lab-view, laravel,
/// lazarus, leiningen, lemon-stand, libre-office, lilypond, linux, lithium,
/// logtalk, lua, lyx, mac-os, magento, magento-1, magento-2, matlab, maven,
/// mercurial, mercury, metals, meta-programming-system, meteor,
/// microsoft-office, model-sim, momentics, mono-develop, nanoc, net-beans,
/// nikola, nim, ninja, node, notepad-pp, nwjs, objective--c, ocaml, octave,
/// opa, open-cart, openssl, oracle-forms, otto, packer, patch, perl, perl6,
/// phalcon, phoenix, pimcore, play-framework, plone, prestashop, processing,
/// psoc-creator, puppet, pure-script, putty, python, qooxdoo, qt, r, racket,
/// rails, raku, red, redcar, redis, rhodes-rhomobile, ros, ruby, rust, sam,
/// sass, sbt, scala, scheme, scons, scrivener, sdcc, seam-gen, sketch-up,
/// slick-edit, smalltalk, snap, splunk, stata, stella, sublime-text,
/// sugar-crm, svn, swift, symfony, symphony-cms, synopsys-vcs, tags,
/// terraform, tex, text-mate, textpattern, think-php, tortoise-git,
/// turbo-gears-2, typo3, umbraco, unity, unreal-engine, vagrant, vim,
/// virtual-env, virtuoso, visual-studio, visual-studio-code, vue, vvvv, waf,
/// web-methods, windows, word-press, xcode, xilinx, xilinx-ise, xojo,
/// yeoman, yii, zend-framework, zephir.
#[prost(string, repeated, tag = "2")]
pub gitignores: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// License template name user can choose from.
/// Valid values: license-0bsd, license-389-exception, aal, abstyles,
/// adobe-2006, adobe-glyph, adsl, afl-1-1, afl-1-2, afl-2-0, afl-2-1,
/// afl-3-0, afmparse, agpl-1-0, agpl-1-0-only, agpl-1-0-or-later,
/// agpl-3-0-only, agpl-3-0-or-later, aladdin, amdplpa, aml, ampas, antlr-pd,
/// antlr-pd-fallback, apache-1-0, apache-1-1, apache-2-0, apafml, apl-1-0,
/// apsl-1-0, apsl-1-1, apsl-1-2, apsl-2-0, artistic-1-0, artistic-1-0-cl8,
/// artistic-1-0-perl, artistic-2-0, autoconf-exception-2-0,
/// autoconf-exception-3-0, bahyph, barr, beerware, bison-exception-2-2,
/// bittorrent-1-0, bittorrent-1-1, blessing, blueoak-1-0-0,
/// bootloader-exception, borceux, bsd-1-clause, bsd-2-clause,
/// bsd-2-clause-freebsd, bsd-2-clause-netbsd, bsd-2-clause-patent,
/// bsd-2-clause-views, bsd-3-clause, bsd-3-clause-attribution,
/// bsd-3-clause-clear, bsd-3-clause-lbnl, bsd-3-clause-modification,
/// bsd-3-clause-no-nuclear-license, bsd-3-clause-no-nuclear-license-2014,
/// bsd-3-clause-no-nuclear-warranty, bsd-3-clause-open-mpi, bsd-4-clause,
/// bsd-4-clause-shortened, bsd-4-clause-uc, bsd-protection, bsd-source-code,
/// bsl-1-0, busl-1-1, cal-1-0, cal-1-0-combined-work-exception, caldera,
/// catosl-1-1, cc0-1-0, cc-by-1-0, cc-by-2-0, cc-by-3-0, cc-by-3-0-at,
/// cc-by-3-0-us, cc-by-4-0, cc-by-nc-1-0, cc-by-nc-2-0, cc-by-nc-3-0,
/// cc-by-nc-4-0, cc-by-nc-nd-1-0, cc-by-nc-nd-2-0, cc-by-nc-nd-3-0,
/// cc-by-nc-nd-3-0-igo, cc-by-nc-nd-4-0, cc-by-nc-sa-1-0, cc-by-nc-sa-2-0,
/// cc-by-nc-sa-3-0, cc-by-nc-sa-4-0, cc-by-nd-1-0, cc-by-nd-2-0,
/// cc-by-nd-3-0, cc-by-nd-4-0, cc-by-sa-1-0, cc-by-sa-2-0, cc-by-sa-2-0-uk,
/// cc-by-sa-2-1-jp, cc-by-sa-3-0, cc-by-sa-3-0-at, cc-by-sa-4-0, cc-pddc,
/// cddl-1-0, cddl-1-1, cdla-permissive-1-0, cdla-sharing-1-0, cecill-1-0,
/// cecill-1-1, cecill-2-0, cecill-2-1, cecill-b, cecill-c, cern-ohl-1-1,
/// cern-ohl-1-2, cern-ohl-p-2-0, cern-ohl-s-2-0, cern-ohl-w-2-0, clartistic,
/// classpath-exception-2-0, clisp-exception-2-0, cnri-jython, cnri-python,
/// cnri-python-gpl-compatible, condor-1-1, copyleft-next-0-3-0,
/// copyleft-next-0-3-1, cpal-1-0, cpl-1-0, cpol-1-02, crossword,
/// crystal-stacker, cua-opl-1-0, cube, c-uda-1-0, curl, d-fsl-1-0, diffmark,
/// digirule-foss-exception, doc, dotseqn, drl-1-0, dsdp, dvipdfm, ecl-1-0,
/// ecl-2-0, ecos-exception-2-0, efl-1-0, efl-2-0, egenix, entessa, epics,
/// epl-1-0, epl-2-0, erlpl-1-1, etalab-2-0, eu-datagrid, eupl-1-0, eupl-1-1,
/// eupl-1-2, eurosym, fair, fawkes-runtime-exception, fltk-exception,
/// font-exception-2-0, frameworx-1-0, freebsd-doc, freeimage,
/// freertos-exception-2-0, fsfap, fsful, fsfullr, ftl, gcc-exception-2-0,
/// gcc-exception-3-1, gd, gfdl-1-1-invariants-only,
/// gfdl-1-1-invariants-or-later, gfdl-1-1-no-invariants-only,
/// gfdl-1-1-no-invariants-or-later, gfdl-1-1-only, gfdl-1-1-or-later,
/// gfdl-1-2-invariants-only, gfdl-1-2-invariants-or-later,
/// gfdl-1-2-no-invariants-only, gfdl-1-2-no-invariants-or-later,
/// gfdl-1-2-only, gfdl-1-2-or-later, gfdl-1-3-invariants-only,
/// gfdl-1-3-invariants-or-later, gfdl-1-3-no-invariants-only,
/// gfdl-1-3-no-invariants-or-later, gfdl-1-3-only, gfdl-1-3-or-later,
/// giftware, gl2ps, glide, glulxe, glwtpl, gnu-javamail-exception, gnuplot,
/// gpl-1-0-only, gpl-1-0-or-later, gpl-2-0-only, gpl-2-0-or-later,
/// gpl-3-0-linking-exception, gpl-3-0-linking-source-exception,
/// gpl-3-0-only, gpl-3-0-or-later, gpl-cc-1-0, gsoap-1-3b, haskell-report,
/// hippocratic-2-1, hpnd, hpnd-sell-variant, htmltidy,
/// i2p-gpl-java-exception, ibm-pibs, icu, ijg, image-magick, imatix, imlib2,
/// info-zip, intel, intel-acpi, interbase-1-0, ipa, ipl-1-0, isc,
/// jasper-2-0, jpnic, json, lal-1-2, lal-1-3, latex2e, leptonica,
/// lgpl-2-0-only, lgpl-2-0-or-later, lgpl-2-1-only, lgpl-2-1-or-later,
/// lgpl-3-0-linking-exception, lgpl-3-0-only, lgpl-3-0-or-later, lgpllr,
/// libpng, libpng-2-0, libselinux-1-0, libtiff, libtool-exception,
/// liliq-p-1-1, liliq-r-1-1, liliq-rplus-1-1, linux-openib,
/// linux-syscall-note, llvm-exception, lpl-1-0, lpl-1-02, lppl-1-0,
/// lppl-1-1, lppl-1-2, lppl-1-3a, lppl-1-3c, lzma-exception, make-index,
/// mif-exception, miros, mit, mit-0, mit-advertising, mit-cmu, mit-enna,
/// mit-feh, mit-modern-variant, mitnfa, mit-open-group, motosoto, mpich2,
/// mpl-1-0, mpl-1-1, mpl-2-0, mpl-2-0-no-copyleft-exception, ms-pl, ms-rl,
/// mtll, mulanpsl-1-0, mulanpsl-2-0, multics, mup, naist-2003, nasa-1-3,
/// naumen, nbpl-1-0, ncgl-uk-2-0, ncsa, netcdf, net-snmp, newsletr, ngpl,
/// nist-pd, nist-pd-fallback, nlod-1-0, nlpl, nokia, nokia-qt-exception-1-1,
/// nosl, noweb, npl-1-0, npl-1-1, nposl-3-0, nrl, ntp, ntp-0,
/// ocaml-lgpl-linking-exception, occt-exception-1-0, occt-pl, oclc-2-0,
/// odbl-1-0, odc-by-1-0, ofl-1-0, ofl-1-0-no-rfn, ofl-1-0-rfn, ofl-1-1,
/// ofl-1-1-no-rfn, ofl-1-1-rfn, ogc-1-0, ogdl-taiwan-1-0, ogl-canada-2-0,
/// ogl-uk-1-0, ogl-uk-2-0, ogl-uk-3-0, ogtsl, oldap-1-1, oldap-1-2,
/// oldap-1-3, oldap-1-4, oldap-2-0, oldap-2-0-1, oldap-2-1, oldap-2-2,
/// oldap-2-2-1, oldap-2-2-2, oldap-2-3, oldap-2-4, oldap-2-7, oml,
/// openjdk-assembly-exception-1-0, openssl, openvpn-openssl-exception,
/// opl-1-0, oset-pl-2-1, osl-1-0, osl-1-1, osl-2-0, osl-2-1, osl-3-0,
/// o-uda-1-0, parity-6-0-0, parity-7-0-0, pddl-1-0, php-3-0, php-3-01,
/// plexus, polyform-noncommercial-1-0-0, polyform-small-business-1-0-0,
/// postgresql, psf-2-0, psfrag, ps-or-pdf-font-exception-20170817, psutils,
/// python-2-0, qhull, qpl-1-0, qt-gpl-exception-1-0, qt-lgpl-exception-1-1,
/// qwt-exception-1-0, rdisc, rhecos-1-1, rpl-1-1, rpsl-1-0, rsa-md, rscpl,
/// ruby, saxpath, sax-pd, scea, sendmail, sendmail-8-23, sgi-b-1-0,
/// sgi-b-1-1, sgi-b-2-0, shl-0-51, shl-2-0, shl-2-1, simpl-2-0, sissl,
/// sissl-1-2, sleepycat, smlnj, smppl, snia, spencer-86, spencer-94,
/// spencer-99, spl-1-0, ssh-openssh, ssh-short, sspl-1-0, sugarcrm-1-1-3,
/// swift-exception, swl, tapr-ohl-1-0, tcl, tcp-wrappers, tmate, torque-1-1,
/// tosl, tu-berlin-1-0, tu-berlin-2-0, u-boot-exception-2-0, ucl-1-0,
/// unicode-dfs-2015, unicode-dfs-2016, unicode-tou,
/// universal-foss-exception-1-0, unlicense, upl-1-0, vim, vostrom, vsl-1-0,
/// w3c, w3c-19980720, w3c-20150513, watcom-1-0, wsuipa, wtfpl,
/// wxwindows-exception-3-1, x11, xerox, xfree86-1-1, xinetd, xnet, xpp,
/// xskat, ypl-1-0, ypl-1-1, zed, zend-2-0, zimbra-1-3, zimbra-1-4, zlib,
/// zlib-acknowledgement, zpl-1-1, zpl-2-0, zpl-2-1.
#[prost(string, tag = "3")]
pub license: ::prost::alloc::string::String,
/// README template name.
/// Valid template name(s) are: default.
#[prost(string, tag = "4")]
pub readme: ::prost::alloc::string::String,
}
}
/// ListInstancesRequest is the request to list instances.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListInstancesRequest {
/// Required. Parent value for ListInstancesRequest.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Requested page size. Server may return fewer items than requested.
/// If unspecified, server will pick an appropriate default.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// A token identifying a page of results the server should return.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
/// Filter for filtering results.
#[prost(string, tag = "4")]
pub filter: ::prost::alloc::string::String,
/// Hint for how to order the results.
#[prost(string, tag = "5")]
pub order_by: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListInstancesResponse {
/// The list of instances.
#[prost(message, repeated, tag = "1")]
pub instances: ::prost::alloc::vec::Vec<Instance>,
/// A token identifying a page of results the server should return.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
/// Locations that could not be reached.
#[prost(string, repeated, tag = "3")]
pub unreachable: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// GetInstanceRequest is the request for getting an instance.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetInstanceRequest {
/// Required. Name of the resource.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// CreateInstanceRequest is the request for creating an instance.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateInstanceRequest {
/// Required. Value for parent.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. ID of the instance to be created.
#[prost(string, tag = "2")]
pub instance_id: ::prost::alloc::string::String,
/// Required. The resource being created.
#[prost(message, optional, tag = "3")]
pub instance: ::core::option::Option<Instance>,
/// Optional. An optional request ID to identify requests. Specify a unique
/// request ID so that if you must retry your request, the server will know to
/// ignore the request if it has already been completed. The server will
/// guarantee that for at least 60 minutes since the first request.
///
/// For example, consider a situation where you make an initial request and
/// the request times out. If you make the request again with the same request
/// ID, the server can check if original operation with the same request ID
/// was received, and if so, will ignore the second request. This prevents
/// clients from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported (00000000-0000-0000-0000-000000000000).
#[prost(string, tag = "4")]
pub request_id: ::prost::alloc::string::String,
}
/// DeleteInstanceRequest is the request for deleting an instance.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteInstanceRequest {
/// Required. Name of the resource.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Optional. An optional request ID to identify requests. Specify a unique
/// request ID so that if you must retry your request, the server will know to
/// ignore the request if it has already been completed. The server will
/// guarantee that for at least 60 minutes after the first request.
///
/// For example, consider a situation where you make an initial request and
/// the request times out. If you make the request again with the same request
/// ID, the server can check if original operation with the same request ID
/// was received, and if so, will ignore the second request. This prevents
/// clients from accidentally creating duplicate commitments.
///
/// The request ID must be a valid UUID with the exception that zero UUID is
/// not supported (00000000-0000-0000-0000-000000000000).
#[prost(string, tag = "2")]
pub request_id: ::prost::alloc::string::String,
}
/// Represents the metadata of the long-running operation.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OperationMetadata {
/// Output only. The time the operation was created.
#[prost(message, optional, tag = "1")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. The time the operation finished running.
#[prost(message, optional, tag = "2")]
pub end_time: ::core::option::Option<::prost_types::Timestamp>,
/// Output only. Server-defined resource path for the target of the operation.
#[prost(string, tag = "3")]
pub target: ::prost::alloc::string::String,
/// Output only. Name of the verb executed by the operation.
#[prost(string, tag = "4")]
pub verb: ::prost::alloc::string::String,
/// Output only. Human-readable status of the operation, if any.
#[prost(string, tag = "5")]
pub status_message: ::prost::alloc::string::String,
/// Output only. Identifies whether the user has requested cancellation
/// of the operation. Operations that have successfully been cancelled
/// have [Operation.error][] value with a
/// [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to
/// `Code.CANCELLED`.
#[prost(bool, tag = "6")]
pub requested_cancellation: bool,
/// Output only. API version used to start the operation.
#[prost(string, tag = "7")]
pub api_version: ::prost::alloc::string::String,
}
/// ListRepositoriesRequest is request to list repositories.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListRepositoriesRequest {
/// Required. Parent value for ListRepositoriesRequest.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Optional. Requested page size. Server may return fewer items than
/// requested. If unspecified, server will pick an appropriate default.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// A token identifying a page of results the server should return.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
/// Optional. Filter results.
#[prost(string, tag = "4")]
pub filter: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListRepositoriesResponse {
/// The list of repositories.
#[prost(message, repeated, tag = "1")]
pub repositories: ::prost::alloc::vec::Vec<Repository>,
/// A token identifying a page of results the server should return.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
/// GetRepositoryRequest is the request for getting a repository.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetRepositoryRequest {
/// Required. Name of the repository to retrieve.
/// The format is
/// `projects/{project_number}/locations/{location_id}/repositories/{repository_id}`.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// CreateRepositoryRequest is the request for creating a repository.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateRepositoryRequest {
/// Required. The project in which to create the repository. Values are of the
/// form `projects/{project_number}/locations/{location_id}`
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// Required. The resource being created.
#[prost(message, optional, tag = "2")]
pub repository: ::core::option::Option<Repository>,
/// Required. The ID to use for the repository, which will become the final
/// component of the repository's resource name. This value should be 4-63
/// characters, and valid characters are /[a-z][0-9]-/.
#[prost(string, tag = "3")]
pub repository_id: ::prost::alloc::string::String,
}
/// DeleteRepositoryRequest is the request to delete a repository.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteRepositoryRequest {
/// Required. Name of the repository to delete.
/// The format is
/// projects/{project_number}/locations/{location_id}/repositories/{repository_id}.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Optional. If set to true, and the repository is not found, the request will
/// succeed but no action will be taken on the server.
#[prost(bool, tag = "2")]
pub allow_missing: bool,
}
/// Generated client implementations.
pub mod secure_source_manager_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
/// Secure Source Manager API
///
/// Access Secure Source Manager instances, resources, and repositories.
///
/// This API is split across two servers: the Control Plane and the Data Plane.
///
/// Data Plane endpoints are hosted directly by your Secure Source Manager
/// instance, so you must connect to your instance's API hostname to access
/// them. The API hostname looks like the following:
///
/// https://[instance-id]-[project-number]-api.[location].sourcemanager.dev
///
/// For example,
///
/// https://my-instance-702770452863-api.us-central1.sourcemanager.dev
///
/// Data Plane endpoints are denoted with **Host: Data Plane**.
///
/// All other endpoints are found in the normal Cloud API location, namely,
/// `securcesourcemanager.googleapis.com`.
#[derive(Debug, Clone)]
pub struct SecureSourceManagerClient<T> {
inner: tonic::client::Grpc<T>,
}
impl<T> SecureSourceManagerClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> SecureSourceManagerClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
SecureSourceManagerClient::new(InterceptedService::new(inner, interceptor))
}
/// Compress requests with the given encoding.
///
/// This requires the server to support it otherwise it might respond with an
/// error.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
/// Enable decompressing responses.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
/// Limits the maximum size of a decoded message.
///
/// Default: `4MB`
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
/// Limits the maximum size of an encoded message.
///
/// Default: `usize::MAX`
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
/// Lists Instances in a given project and location.
pub async fn list_instances(
&mut self,
request: impl tonic::IntoRequest<super::ListInstancesRequest>,
) -> std::result::Result<
tonic::Response<super::ListInstancesResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securesourcemanager.v1.SecureSourceManager/ListInstances",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securesourcemanager.v1.SecureSourceManager",
"ListInstances",
),
);
self.inner.unary(req, path, codec).await
}
/// Gets details of a single instance.
pub async fn get_instance(
&mut self,
request: impl tonic::IntoRequest<super::GetInstanceRequest>,
) -> std::result::Result<tonic::Response<super::Instance>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securesourcemanager.v1.SecureSourceManager/GetInstance",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securesourcemanager.v1.SecureSourceManager",
"GetInstance",
),
);
self.inner.unary(req, path, codec).await
}
/// Creates a new instance in a given project and location.
pub async fn create_instance(
&mut self,
request: impl tonic::IntoRequest<super::CreateInstanceRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securesourcemanager.v1.SecureSourceManager/CreateInstance",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securesourcemanager.v1.SecureSourceManager",
"CreateInstance",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes a single instance.
pub async fn delete_instance(
&mut self,
request: impl tonic::IntoRequest<super::DeleteInstanceRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securesourcemanager.v1.SecureSourceManager/DeleteInstance",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securesourcemanager.v1.SecureSourceManager",
"DeleteInstance",
),
);
self.inner.unary(req, path, codec).await
}
/// Lists Repositories in a given project and location.
///
/// **Host: Data Plane**
pub async fn list_repositories(
&mut self,
request: impl tonic::IntoRequest<super::ListRepositoriesRequest>,
) -> std::result::Result<
tonic::Response<super::ListRepositoriesResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securesourcemanager.v1.SecureSourceManager/ListRepositories",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securesourcemanager.v1.SecureSourceManager",
"ListRepositories",
),
);
self.inner.unary(req, path, codec).await
}
/// Gets metadata of a repository.
///
/// **Host: Data Plane**
pub async fn get_repository(
&mut self,
request: impl tonic::IntoRequest<super::GetRepositoryRequest>,
) -> std::result::Result<tonic::Response<super::Repository>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securesourcemanager.v1.SecureSourceManager/GetRepository",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securesourcemanager.v1.SecureSourceManager",
"GetRepository",
),
);
self.inner.unary(req, path, codec).await
}
/// Creates a new repository in a given project and location.
///
/// **Host: Data Plane**
pub async fn create_repository(
&mut self,
request: impl tonic::IntoRequest<super::CreateRepositoryRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securesourcemanager.v1.SecureSourceManager/CreateRepository",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securesourcemanager.v1.SecureSourceManager",
"CreateRepository",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes a Repository.
///
/// **Host: Data Plane**
pub async fn delete_repository(
&mut self,
request: impl tonic::IntoRequest<super::DeleteRepositoryRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securesourcemanager.v1.SecureSourceManager/DeleteRepository",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securesourcemanager.v1.SecureSourceManager",
"DeleteRepository",
),
);
self.inner.unary(req, path, codec).await
}
/// Get IAM policy for a repository.
pub async fn get_iam_policy_repo(
&mut self,
request: impl tonic::IntoRequest<
super::super::super::super::iam::v1::GetIamPolicyRequest,
>,
) -> std::result::Result<
tonic::Response<super::super::super::super::iam::v1::Policy>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securesourcemanager.v1.SecureSourceManager/GetIamPolicyRepo",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securesourcemanager.v1.SecureSourceManager",
"GetIamPolicyRepo",
),
);
self.inner.unary(req, path, codec).await
}
/// Set IAM policy on a repository.
pub async fn set_iam_policy_repo(
&mut self,
request: impl tonic::IntoRequest<
super::super::super::super::iam::v1::SetIamPolicyRequest,
>,
) -> std::result::Result<
tonic::Response<super::super::super::super::iam::v1::Policy>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securesourcemanager.v1.SecureSourceManager/SetIamPolicyRepo",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securesourcemanager.v1.SecureSourceManager",
"SetIamPolicyRepo",
),
);
self.inner.unary(req, path, codec).await
}
/// Test IAM permissions on a repository.
/// IAM permission checks are not required on this method.
pub async fn test_iam_permissions_repo(
&mut self,
request: impl tonic::IntoRequest<
super::super::super::super::iam::v1::TestIamPermissionsRequest,
>,
) -> std::result::Result<
tonic::Response<
super::super::super::super::iam::v1::TestIamPermissionsResponse,
>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.securesourcemanager.v1.SecureSourceManager/TestIamPermissionsRepo",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.securesourcemanager.v1.SecureSourceManager",
"TestIamPermissionsRepo",
),
);
self.inner.unary(req, path, codec).await
}
}
}