# frozen_string_literal: true # Copyright 2024 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Auto-generated by gapic-generator-ruby. DO NOT EDIT! module Google module Cloud module SecureSourceManager module V1 # A resource that represents a Secure Source Manager instance. # @!attribute [rw] name # @return [::String] # 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. # @!attribute [r] create_time # @return [::Google::Protobuf::Timestamp] # Output only. Create timestamp. # @!attribute [r] update_time # @return [::Google::Protobuf::Timestamp] # Output only. Update timestamp. # @!attribute [rw] labels # @return [::Google::Protobuf::Map{::String => ::String}] # Optional. Labels as key value pairs. # @!attribute [rw] private_config # @return [::Google::Cloud::SecureSourceManager::V1::Instance::PrivateConfig] # Optional. Private settings for private instance. # @!attribute [r] state # @return [::Google::Cloud::SecureSourceManager::V1::Instance::State] # Output only. Current state of the instance. # @!attribute [r] state_note # @return [::Google::Cloud::SecureSourceManager::V1::Instance::StateNote] # Output only. An optional field providing information about the current # instance state. # @!attribute [rw] kms_key # @return [::String] # Optional. Immutable. Customer-managed encryption key name, in the format # projects/*/locations/*/keyRings/*/cryptoKeys/*. # @!attribute [r] host_config # @return [::Google::Cloud::SecureSourceManager::V1::Instance::HostConfig] # Output only. A list of hostnames for this instance. class Instance include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # HostConfig has different instance endpoints. # @!attribute [r] html # @return [::String] # Output only. HTML hostname. # @!attribute [r] api # @return [::String] # Output only. API hostname. This is the hostname to use for **Host: Data # Plane** endpoints. # @!attribute [r] git_http # @return [::String] # Output only. Git HTTP hostname. # @!attribute [r] git_ssh # @return [::String] # Output only. Git SSH hostname. class HostConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # PrivateConfig includes settings for private instance. # @!attribute [rw] is_private # @return [::Boolean] # Required. Immutable. Indicate if it's private instance. # @!attribute [rw] ca_pool # @return [::String] # Required. Immutable. CA pool resource, resource must in the format of # `projects/{project}/locations/{location}/caPools/{ca_pool}`. # @!attribute [r] http_service_attachment # @return [::String] # Output only. Service Attachment for HTTP, resource is in the format of # `projects/{project}/regions/{region}/serviceAttachments/{service_attachment}`. # @!attribute [r] ssh_service_attachment # @return [::String] # Output only. Service Attachment for SSH, resource is in the format of # `projects/{project}/regions/{region}/serviceAttachments/{service_attachment}`. # @!attribute [rw] psc_allowed_projects # @return [::Array<::String>] # Optional. Additional allowed projects for setting up PSC connections. # Instance host project is automatically allowed and does not need to be # included in this list. class PrivateConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Secure Source Manager instance state. module State # Not set. This should only be the case for incoming requests. STATE_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 end # Provides information about the current instance state. module StateNote # STATE_NOTE_UNSPECIFIED as the first value of State. STATE_NOTE_UNSPECIFIED = 0 # CMEK access is unavailable. PAUSED_CMEK_UNAVAILABLE = 1 # INSTANCE_RESUMING indicates that the instance was previously paused # and is under the process of being brought back. INSTANCE_RESUMING = 2 end end # Metadata of a Secure Source Manager repository. # @!attribute [rw] name # @return [::String] # Optional. A unique identifier for a repository. The name should be of the # format: # `projects/{project}/locations/{location_id}/repositories/{repository_id}` # @!attribute [rw] description # @return [::String] # Optional. Description of the repository, which cannot exceed 500 # characters. # @!attribute [rw] instance # @return [::String] # Optional. The name of the instance in which the repository is hosted, # formatted as # `projects/{project_number}/locations/{location_id}/instances/{instance_id}` # When creating repository via # securesourcemanager.googleapis.com (Control Plane API), this field is used # as input. When creating repository via *.sourcemanager.dev (Data Plane # API), this field is output only. # @!attribute [r] uid # @return [::String] # Output only. Unique identifier of the repository. # @!attribute [r] create_time # @return [::Google::Protobuf::Timestamp] # Output only. Create timestamp. # @!attribute [r] update_time # @return [::Google::Protobuf::Timestamp] # Output only. Update timestamp. # @!attribute [rw] etag # @return [::String] # 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. # @!attribute [r] uris # @return [::Google::Cloud::SecureSourceManager::V1::Repository::URIs] # Output only. URIs for the repository. # @!attribute [rw] initial_config # @return [::Google::Cloud::SecureSourceManager::V1::Repository::InitialConfig] # Input only. Initial configurations for the repository. class Repository include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # URIs for the repository. # @!attribute [r] html # @return [::String] # Output only. HTML is the URI for user to view the repository in a # browser. # @!attribute [r] git_https # @return [::String] # Output only. git_https is the git HTTPS URI for git operations. # @!attribute [r] api # @return [::String] # Output only. API is the URI for API access. class URIs include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Repository initialization configuration. # @!attribute [rw] default_branch # @return [::String] # Default branch name of the repository. # @!attribute [rw] gitignores # @return [::Array<::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. # @!attribute [rw] license # @return [::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. # @!attribute [rw] readme # @return [::String] # README template name. # Valid template name(s) are: default. class InitialConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end # Metadata of a BranchRule. BranchRule is the protection rule to enforce # pre-defined rules on desginated branches within a repository. # @!attribute [rw] name # @return [::String] # Optional. A unique identifier for a BranchRule. The name should be of the # format: # `projects/{project}/locations/{location}/repositories/{repository}/branchRules/{branch_rule}` # @!attribute [r] uid # @return [::String] # Output only. Unique identifier of the repository. # @!attribute [r] create_time # @return [::Google::Protobuf::Timestamp] # Output only. Create timestamp. # @!attribute [r] update_time # @return [::Google::Protobuf::Timestamp] # Output only. Update timestamp. # @!attribute [rw] annotations # @return [::Google::Protobuf::Map{::String => ::String}] # Optional. User annotations. These attributes can only be set and used by # the user. See https://google.aip.dev/128#annotations for more details such # as format and size limitations. # @!attribute [rw] etag # @return [::String] # 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. # @!attribute [rw] include_pattern # @return [::String] # Optional. The pattern of the branch that can match to this BranchRule. # Specified as regex. # .* for all branches. Examples: main, (main|release.*). # Current MVP phase only support `.*` for wildcard. # @!attribute [rw] disabled # @return [::Boolean] # Optional. Determines if the branch rule is disabled or not. # @!attribute [rw] require_pull_request # @return [::Boolean] # Optional. Determines if the branch rule requires a pull request or not. # @!attribute [rw] minimum_reviews_count # @return [::Integer] # Optional. The minimum number of reviews required for the branch rule to be # matched. # @!attribute [rw] minimum_approvals_count # @return [::Integer] # Optional. The minimum number of approvals required for the branch rule to # be matched. # @!attribute [rw] require_comments_resolved # @return [::Boolean] # Optional. Determines if require comments resolved before merging to the # branch. # @!attribute [rw] allow_stale_reviews # @return [::Boolean] # Optional. Determines if allow stale reviews or approvals before merging to # the branch. # @!attribute [rw] require_linear_history # @return [::Boolean] # Optional. Determines if require linear history before merging to the # branch. # @!attribute [rw] required_status_checks # @return [::Array<::Google::Cloud::SecureSourceManager::V1::BranchRule::Check>] # Optional. List of required status checks before merging to the branch. class BranchRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Check is a type for status check. # @!attribute [rw] context # @return [::String] # Required. The context of the check. class Check include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end # ListInstancesRequest is the request to list instances. # @!attribute [rw] parent # @return [::String] # Required. Parent value for ListInstancesRequest. # @!attribute [rw] page_size # @return [::Integer] # Requested page size. Server may return fewer items than requested. # If unspecified, server will pick an appropriate default. # @!attribute [rw] page_token # @return [::String] # A token identifying a page of results the server should return. # @!attribute [rw] filter # @return [::String] # Filter for filtering results. # @!attribute [rw] order_by # @return [::String] # Hint for how to order the results. class ListInstancesRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] instances # @return [::Array<::Google::Cloud::SecureSourceManager::V1::Instance>] # The list of instances. # @!attribute [rw] next_page_token # @return [::String] # A token identifying a page of results the server should return. # @!attribute [rw] unreachable # @return [::Array<::String>] # Locations that could not be reached. class ListInstancesResponse include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # GetInstanceRequest is the request for getting an instance. # @!attribute [rw] name # @return [::String] # Required. Name of the resource. class GetInstanceRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # CreateInstanceRequest is the request for creating an instance. # @!attribute [rw] parent # @return [::String] # Required. Value for parent. # @!attribute [rw] instance_id # @return [::String] # Required. ID of the instance to be created. # @!attribute [rw] instance # @return [::Google::Cloud::SecureSourceManager::V1::Instance] # Required. The resource being created. # @!attribute [rw] request_id # @return [::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 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). class CreateInstanceRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # DeleteInstanceRequest is the request for deleting an instance. # @!attribute [rw] name # @return [::String] # Required. Name of the resource. # @!attribute [rw] request_id # @return [::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). class DeleteInstanceRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Represents the metadata of the long-running operation. # @!attribute [r] create_time # @return [::Google::Protobuf::Timestamp] # Output only. The time the operation was created. # @!attribute [r] end_time # @return [::Google::Protobuf::Timestamp] # Output only. The time the operation finished running. # @!attribute [r] target # @return [::String] # Output only. Server-defined resource path for the target of the operation. # @!attribute [r] verb # @return [::String] # Output only. Name of the verb executed by the operation. # @!attribute [r] status_message # @return [::String] # Output only. Human-readable status of the operation, if any. # @!attribute [r] requested_cancellation # @return [::Boolean] # 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`. # @!attribute [r] api_version # @return [::String] # Output only. API version used to start the operation. class OperationMetadata include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # ListRepositoriesRequest is request to list repositories. # @!attribute [rw] parent # @return [::String] # Required. Parent value for ListRepositoriesRequest. # @!attribute [rw] page_size # @return [::Integer] # Optional. Requested page size. Server may return fewer items than # requested. If unspecified, server will pick an appropriate default. # @!attribute [rw] page_token # @return [::String] # A token identifying a page of results the server should return. # @!attribute [rw] filter # @return [::String] # Optional. Filter results. # @!attribute [rw] instance # @return [::String] # Optional. The name of the instance in which the repository is hosted, # formatted as # `projects/{project_number}/locations/{location_id}/instances/{instance_id}`. # When listing repositories via # securesourcemanager.googleapis.com (Control Plane API), this field is # required. When listing repositories via *.sourcemanager.dev (Data Plane # API), this field is ignored. class ListRepositoriesRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] repositories # @return [::Array<::Google::Cloud::SecureSourceManager::V1::Repository>] # The list of repositories. # @!attribute [rw] next_page_token # @return [::String] # A token identifying a page of results the server should return. class ListRepositoriesResponse include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # GetRepositoryRequest is the request for getting a repository. # @!attribute [rw] name # @return [::String] # Required. Name of the repository to retrieve. # The format is # `projects/{project_number}/locations/{location_id}/repositories/{repository_id}`. class GetRepositoryRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # CreateRepositoryRequest is the request for creating a repository. # @!attribute [rw] parent # @return [::String] # Required. The project in which to create the repository. Values are of the # form `projects/{project_number}/locations/{location_id}` # @!attribute [rw] repository # @return [::Google::Cloud::SecureSourceManager::V1::Repository] # Required. The resource being created. # @!attribute [rw] repository_id # @return [::String] # 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]-/. class CreateRepositoryRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # DeleteRepositoryRequest is the request to delete a repository. # @!attribute [rw] name # @return [::String] # Required. Name of the repository to delete. # The format is # projects/\\{project_number}/locations/\\{location_id}/repositories/\\{repository_id}. # @!attribute [rw] allow_missing # @return [::Boolean] # Optional. If set to true, and the repository is not found, the request will # succeed but no action will be taken on the server. class DeleteRepositoryRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # GetBranchRuleRequest is the request for getting a branch rule. # @!attribute [rw] name # @return [::String] # Required. Name of the repository to retrieve. # The format is # `projects/{project}/locations/{location}/repositories/{repository}/branchRules/{branch_rule}`. class GetBranchRuleRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # CreateBranchRuleRequest is the request to create a branch rule. # @!attribute [rw] parent # @return [::String] # @!attribute [rw] branch_rule # @return [::Google::Cloud::SecureSourceManager::V1::BranchRule] # @!attribute [rw] branch_rule_id # @return [::String] class CreateBranchRuleRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # ListBranchRulesRequest is the request to list branch rules. # @!attribute [rw] parent # @return [::String] # @!attribute [rw] page_size # @return [::Integer] # @!attribute [rw] page_token # @return [::String] class ListBranchRulesRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # DeleteBranchRuleRequest is the request to delete a branch rule. # @!attribute [rw] name # @return [::String] # @!attribute [rw] allow_missing # @return [::Boolean] # Optional. If set to true, and the branch rule is not found, the request # will succeed but no action will be taken on the server. class DeleteBranchRuleRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # UpdateBranchRuleRequest is the request to update a branchRule. # @!attribute [rw] branch_rule # @return [::Google::Cloud::SecureSourceManager::V1::BranchRule] # @!attribute [rw] validate_only # @return [::Boolean] # Optional. If set, validate the request and preview the review, but do not # actually post it. (https://google.aip.dev/163, for declarative friendly) # @!attribute [rw] update_mask # @return [::Google::Protobuf::FieldMask] # Required. Field mask is used to specify the fields to be overwritten in the # branchRule resource by the update. # The fields specified in the update_mask are relative to the resource, not # the full request. A field will be overwritten if it is in the mask. # The special value "*" means full replacement. class UpdateBranchRuleRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # ListBranchRulesResponse is the response to listing branchRules. # @!attribute [rw] branch_rules # @return [::Array<::Google::Cloud::SecureSourceManager::V1::BranchRule>] # The list of branch rules. # @!attribute [rw] next_page_token # @return [::String] # A token identifying a page of results the server should return. class ListBranchRulesResponse include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end end end end