Class: Google::Cloud::Deploy::V1::SkaffoldModules
- Inherits:
-
Object
- Object
- Google::Cloud::Deploy::V1::SkaffoldModules
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/deploy/v1/cloud_deploy.rb
Overview
Skaffold Config modules and their remote source.
Defined Under Namespace
Classes: SkaffoldGCBRepoSource, SkaffoldGCSSource, SkaffoldGitSource
Instance Attribute Summary collapse
-
#configs ⇒ ::Array<::String>
Optional.
-
#git ⇒ ::Google::Cloud::Deploy::V1::SkaffoldModules::SkaffoldGitSource
Remote git repository containing the Skaffold Config modules.
-
#google_cloud_build_repo ⇒ ::Google::Cloud::Deploy::V1::SkaffoldModules::SkaffoldGCBRepoSource
Cloud Build V2 repository containing the Skaffold Config modules.
-
#google_cloud_storage ⇒ ::Google::Cloud::Deploy::V1::SkaffoldModules::SkaffoldGCSSource
Cloud Storage bucket containing the Skaffold Config modules.
Instance Attribute Details
#configs ⇒ ::Array<::String>
Returns Optional. The Skaffold Config modules to use from the specified source.
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 1322 class SkaffoldModules include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Git repository containing Skaffold Config modules. # @!attribute [rw] repo # @return [::String] # Required. Git repository the package should be cloned from. # @!attribute [rw] path # @return [::String] # Optional. Relative path from the repository root to the Skaffold file. # @!attribute [rw] ref # @return [::String] # Optional. Git branch or tag to use when cloning the repository. class SkaffoldGitSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Cloud Storage bucket containing Skaffold Config modules. # @!attribute [rw] source # @return [::String] # Required. Cloud Storage source paths to copy recursively. For example, # providing "gs://my-bucket/dir/configs/*" will result in Skaffold copying # all files within the "dir/configs" directory in the bucket "my-bucket". # @!attribute [rw] path # @return [::String] # Optional. Relative path from the source to the Skaffold file. class SkaffoldGCSSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Cloud Build V2 Repository containing Skaffold Configs. # @!attribute [rw] repository # @return [::String] # Required. Name of the Cloud Build V2 Repository. # Format is # projects/\\{project}/locations/\\{location}/connections/\\{connection}/repositories/\\{repository}. # @!attribute [rw] path # @return [::String] # Optional. Relative path from the repository root to the Skaffold Config # file. # @!attribute [rw] ref # @return [::String] # Optional. Branch or tag to use when cloning the repository. class SkaffoldGCBRepoSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#git ⇒ ::Google::Cloud::Deploy::V1::SkaffoldModules::SkaffoldGitSource
Returns Remote git repository containing the Skaffold Config modules.
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 1322 class SkaffoldModules include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Git repository containing Skaffold Config modules. # @!attribute [rw] repo # @return [::String] # Required. Git repository the package should be cloned from. # @!attribute [rw] path # @return [::String] # Optional. Relative path from the repository root to the Skaffold file. # @!attribute [rw] ref # @return [::String] # Optional. Git branch or tag to use when cloning the repository. class SkaffoldGitSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Cloud Storage bucket containing Skaffold Config modules. # @!attribute [rw] source # @return [::String] # Required. Cloud Storage source paths to copy recursively. For example, # providing "gs://my-bucket/dir/configs/*" will result in Skaffold copying # all files within the "dir/configs" directory in the bucket "my-bucket". # @!attribute [rw] path # @return [::String] # Optional. Relative path from the source to the Skaffold file. class SkaffoldGCSSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Cloud Build V2 Repository containing Skaffold Configs. # @!attribute [rw] repository # @return [::String] # Required. Name of the Cloud Build V2 Repository. # Format is # projects/\\{project}/locations/\\{location}/connections/\\{connection}/repositories/\\{repository}. # @!attribute [rw] path # @return [::String] # Optional. Relative path from the repository root to the Skaffold Config # file. # @!attribute [rw] ref # @return [::String] # Optional. Branch or tag to use when cloning the repository. class SkaffoldGCBRepoSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#google_cloud_build_repo ⇒ ::Google::Cloud::Deploy::V1::SkaffoldModules::SkaffoldGCBRepoSource
Returns Cloud Build V2 repository containing the Skaffold Config modules.
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 1322 class SkaffoldModules include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Git repository containing Skaffold Config modules. # @!attribute [rw] repo # @return [::String] # Required. Git repository the package should be cloned from. # @!attribute [rw] path # @return [::String] # Optional. Relative path from the repository root to the Skaffold file. # @!attribute [rw] ref # @return [::String] # Optional. Git branch or tag to use when cloning the repository. class SkaffoldGitSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Cloud Storage bucket containing Skaffold Config modules. # @!attribute [rw] source # @return [::String] # Required. Cloud Storage source paths to copy recursively. For example, # providing "gs://my-bucket/dir/configs/*" will result in Skaffold copying # all files within the "dir/configs" directory in the bucket "my-bucket". # @!attribute [rw] path # @return [::String] # Optional. Relative path from the source to the Skaffold file. class SkaffoldGCSSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Cloud Build V2 Repository containing Skaffold Configs. # @!attribute [rw] repository # @return [::String] # Required. Name of the Cloud Build V2 Repository. # Format is # projects/\\{project}/locations/\\{location}/connections/\\{connection}/repositories/\\{repository}. # @!attribute [rw] path # @return [::String] # Optional. Relative path from the repository root to the Skaffold Config # file. # @!attribute [rw] ref # @return [::String] # Optional. Branch or tag to use when cloning the repository. class SkaffoldGCBRepoSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#google_cloud_storage ⇒ ::Google::Cloud::Deploy::V1::SkaffoldModules::SkaffoldGCSSource
Returns Cloud Storage bucket containing the Skaffold Config modules.
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 |
# File 'proto_docs/google/cloud/deploy/v1/cloud_deploy.rb', line 1322 class SkaffoldModules include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Git repository containing Skaffold Config modules. # @!attribute [rw] repo # @return [::String] # Required. Git repository the package should be cloned from. # @!attribute [rw] path # @return [::String] # Optional. Relative path from the repository root to the Skaffold file. # @!attribute [rw] ref # @return [::String] # Optional. Git branch or tag to use when cloning the repository. class SkaffoldGitSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Cloud Storage bucket containing Skaffold Config modules. # @!attribute [rw] source # @return [::String] # Required. Cloud Storage source paths to copy recursively. For example, # providing "gs://my-bucket/dir/configs/*" will result in Skaffold copying # all files within the "dir/configs" directory in the bucket "my-bucket". # @!attribute [rw] path # @return [::String] # Optional. Relative path from the source to the Skaffold file. class SkaffoldGCSSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Cloud Build V2 Repository containing Skaffold Configs. # @!attribute [rw] repository # @return [::String] # Required. Name of the Cloud Build V2 Repository. # Format is # projects/\\{project}/locations/\\{location}/connections/\\{connection}/repositories/\\{repository}. # @!attribute [rw] path # @return [::String] # Optional. Relative path from the repository root to the Skaffold Config # file. # @!attribute [rw] ref # @return [::String] # Optional. Branch or tag to use when cloning the repository. class SkaffoldGCBRepoSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |