Class: Google::Apis::SourcerepoV1::ProjectConfig
- Inherits:
-
Object
- Object
- Google::Apis::SourcerepoV1::ProjectConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sourcerepo_v1/classes.rb,
generated/google/apis/sourcerepo_v1/representations.rb,
generated/google/apis/sourcerepo_v1/representations.rb
Overview
Cloud Source Repositories configuration of a project.
Instance Attribute Summary collapse
-
#enable_private_key_check ⇒ Boolean
(also: #enable_private_key_check?)
Reject a Git push that contains a private key.
-
#name ⇒ String
The name of the project.
-
#pubsub_configs ⇒ Hash<String,Google::Apis::SourcerepoV1::PubsubConfig>
How this project publishes a change in the repositories through Cloud Pub/Sub.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProjectConfig
constructor
A new instance of ProjectConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ProjectConfig
Returns a new instance of ProjectConfig.
474 475 476 |
# File 'generated/google/apis/sourcerepo_v1/classes.rb', line 474 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enable_private_key_check ⇒ Boolean Also known as: enable_private_key_check?
Reject a Git push that contains a private key.
Corresponds to the JSON property enablePrivateKeyCheck
460 461 462 |
# File 'generated/google/apis/sourcerepo_v1/classes.rb', line 460 def enable_private_key_check @enable_private_key_check end |
#name ⇒ String
The name of the project. Values are of the form projects/
.
Corresponds to the JSON property name
466 467 468 |
# File 'generated/google/apis/sourcerepo_v1/classes.rb', line 466 def name @name end |
#pubsub_configs ⇒ Hash<String,Google::Apis::SourcerepoV1::PubsubConfig>
How this project publishes a change in the repositories through Cloud Pub/Sub.
Keyed by the topic names.
Corresponds to the JSON property pubsubConfigs
472 473 474 |
# File 'generated/google/apis/sourcerepo_v1/classes.rb', line 472 def pubsub_configs @pubsub_configs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
479 480 481 482 483 |
# File 'generated/google/apis/sourcerepo_v1/classes.rb', line 479 def update!(**args) @enable_private_key_check = args[:enable_private_key_check] if args.key?(:enable_private_key_check) @name = args[:name] if args.key?(:name) @pubsub_configs = args[:pubsub_configs] if args.key?(:pubsub_configs) end |