Class: Google::Apis::CloudbuildV1alpha2::Build

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudbuild_v1alpha2/classes.rb,
lib/google/apis/cloudbuild_v1alpha2/representations.rb,
lib/google/apis/cloudbuild_v1alpha2/representations.rb

Overview

A build resource in the Cloud Build API. At a high level, a Build describes where to find source code, how to build it (for example, the builder image to run on the source), and where to store the built artifacts. Fields can include the following variables, which will be expanded when the build is created: - $ PROJECT_ID: the project ID of the build. - $PROJECT_NUMBER: the project number of the build. - $BUILD_ID: the autogenerated ID of the build. - $REPO_NAME: the source repository name specified by RepoSource. - $BRANCH_NAME: the branch name specified by RepoSource. - $TAG_NAME: the tag name specified by RepoSource. - $REVISION_ID or $COMMIT_SHA: the commit SHA specified by RepoSource or resolved from the specified branch or tag. - $SHORT_SHA: first 7 characters of $REVISION_ID or $COMMIT_SHA.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Build

Returns a new instance of Build.



293
294
295
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 293

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#artifactsGoogle::Apis::CloudbuildV1alpha2::Artifacts

Artifacts produced by a build that should be uploaded upon successful completion of all build steps. Corresponds to the JSON property artifacts



136
137
138
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 136

def artifacts
  @artifacts
end

#available_secretsGoogle::Apis::CloudbuildV1alpha2::Secrets

Secrets and secret environment variables. Corresponds to the JSON property availableSecrets



141
142
143
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 141

def available_secrets
  @available_secrets
end

#build_trigger_idString

Output only. The ID of the BuildTrigger that triggered this build, if it was triggered automatically. Corresponds to the JSON property buildTriggerId

Returns:

  • (String)


147
148
149
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 147

def build_trigger_id
  @build_trigger_id
end

#create_timeString

Output only. Time at which the request to create the build was received. Corresponds to the JSON property createTime

Returns:

  • (String)


152
153
154
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 152

def create_time
  @create_time
end

#finish_timeString

Output only. Time at which execution of the build was finished. The difference between finish_time and start_time is the duration of the build's execution. Corresponds to the JSON property finishTime

Returns:

  • (String)


158
159
160
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 158

def finish_time
  @finish_time
end

#idString

Output only. Unique identifier of the build. Corresponds to the JSON property id

Returns:

  • (String)


163
164
165
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 163

def id
  @id
end

#imagesArray<String>

A list of images to be pushed upon the successful completion of all build steps. The images are pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build status is marked FAILURE. Corresponds to the JSON property images

Returns:

  • (Array<String>)


172
173
174
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 172

def images
  @images
end

#log_urlString

Output only. URL to logs for this build in Google Cloud Console. Corresponds to the JSON property logUrl

Returns:

  • (String)


177
178
179
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 177

def log_url
  @log_url
end

#logs_bucketString

Google Cloud Storage bucket where logs should be written (see Bucket Name Requirements ). Logs file names will be of the format $logs_bucket/log-$build_id.txt. Corresponds to the JSON property logsBucket

Returns:

  • (String)


184
185
186
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 184

def logs_bucket
  @logs_bucket
end

#nameString

Output only. The 'Build' name with format: projects/project/locations/ location/builds/build`, wherebuildis a unique identifier generated by the service. Corresponds to the JSON propertyname`

Returns:

  • (String)


191
192
193
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 191

def name
  @name
end

#optionsGoogle::Apis::CloudbuildV1alpha2::BuildOptions

Optional arguments to enable specific features of builds. Corresponds to the JSON property options



196
197
198
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 196

def options
  @options
end

#project_idString

Output only. ID of the project. Corresponds to the JSON property projectId

Returns:

  • (String)


201
202
203
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 201

def project_id
  @project_id
end

#queue_ttlString

TTL in queue for this build. If provided and the build is enqueued longer than this value, the build will expire and the build status will be EXPIRED. The TTL starts ticking from create_time. Corresponds to the JSON property queueTtl

Returns:

  • (String)


208
209
210
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 208

def queue_ttl
  @queue_ttl
end

#resultsGoogle::Apis::CloudbuildV1alpha2::Results

Artifacts created by the build pipeline. Corresponds to the JSON property results



213
214
215
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 213

def results
  @results
end

#secretsArray<Google::Apis::CloudbuildV1alpha2::Secret>

Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use available_secrets to configure builds to access secrets from Secret Manager. For instructions, see: https://cloud.google.com/cloud-build/docs/securing- builds/use-secrets Corresponds to the JSON property secrets



222
223
224
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 222

def secrets
  @secrets
end

#service_accountString

IAM service account whose credentials will be used at build runtime. Must be of the format projects/PROJECT_ID/serviceAccounts/ACCOUNT`. ACCOUNT can be email address or uniqueId of the service account. Corresponds to the JSON propertyserviceAccount`

Returns:

  • (String)


229
230
231
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 229

def 
  @service_account
end

#sourceGoogle::Apis::CloudbuildV1alpha2::Source

Location of the source in a supported storage service. Corresponds to the JSON property source



234
235
236
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 234

def source
  @source
end

#source_provenanceGoogle::Apis::CloudbuildV1alpha2::SourceProvenance

Provenance of the source. Ways to find the original source, or verify that some source was used for this build. Corresponds to the JSON property sourceProvenance



240
241
242
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 240

def source_provenance
  @source_provenance
end

#start_timeString

Output only. Time at which execution of the build was started. Corresponds to the JSON property startTime

Returns:

  • (String)


245
246
247
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 245

def start_time
  @start_time
end

#statusString

Output only. Status of the build. Corresponds to the JSON property status

Returns:

  • (String)


250
251
252
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 250

def status
  @status
end

#status_detailString

Output only. Customer-readable message about the current status. Corresponds to the JSON property statusDetail

Returns:

  • (String)


255
256
257
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 255

def status_detail
  @status_detail
end

#stepsArray<Google::Apis::CloudbuildV1alpha2::BuildStep>

Required. The operations to be performed on the workspace. Corresponds to the JSON property steps



260
261
262
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 260

def steps
  @steps
end

#substitutionsHash<String,String>

Substitutions data for Build resource. Corresponds to the JSON property substitutions

Returns:

  • (Hash<String,String>)


265
266
267
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 265

def substitutions
  @substitutions
end

#tagsArray<String>

Tags for annotation of a Build. These are not docker tags. Corresponds to the JSON property tags

Returns:

  • (Array<String>)


270
271
272
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 270

def tags
  @tags
end

#timeoutString

Amount of time that this build should be allowed to run, to second granularity. If this amount of time elapses, work on the build will cease and the build status will be TIMEOUT. timeout starts ticking from startTime. Default time is ten minutes. Corresponds to the JSON property timeout

Returns:

  • (String)


278
279
280
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 278

def timeout
  @timeout
end

#timingHash<String,Google::Apis::CloudbuildV1alpha2::TimeSpan>

Output only. Stores timing information for phases of the build. Valid keys are:

  • BUILD: time to execute all build steps * PUSH: time to push all specified images. * FETCHSOURCE: time to fetch source. If the build does not specify source or images, these keys will not be included. Corresponds to the JSON property timing


286
287
288
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 286

def timing
  @timing
end

#warningsArray<Google::Apis::CloudbuildV1alpha2::Warning>

Output only. Non-fatal problems encountered during the execution of the build. Corresponds to the JSON property warnings



291
292
293
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 291

def warnings
  @warnings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 298

def update!(**args)
  @artifacts = args[:artifacts] if args.key?(:artifacts)
  @available_secrets = args[:available_secrets] if args.key?(:available_secrets)
  @build_trigger_id = args[:build_trigger_id] if args.key?(:build_trigger_id)
  @create_time = args[:create_time] if args.key?(:create_time)
  @finish_time = args[:finish_time] if args.key?(:finish_time)
  @id = args[:id] if args.key?(:id)
  @images = args[:images] if args.key?(:images)
  @log_url = args[:log_url] if args.key?(:log_url)
  @logs_bucket = args[:logs_bucket] if args.key?(:logs_bucket)
  @name = args[:name] if args.key?(:name)
  @options = args[:options] if args.key?(:options)
  @project_id = args[:project_id] if args.key?(:project_id)
  @queue_ttl = args[:queue_ttl] if args.key?(:queue_ttl)
  @results = args[:results] if args.key?(:results)
  @secrets = args[:secrets] if args.key?(:secrets)
  @service_account = args[:service_account] if args.key?(:service_account)
  @source = args[:source] if args.key?(:source)
  @source_provenance = args[:source_provenance] if args.key?(:source_provenance)
  @start_time = args[:start_time] if args.key?(:start_time)
  @status = args[:status] if args.key?(:status)
  @status_detail = args[:status_detail] if args.key?(:status_detail)
  @steps = args[:steps] if args.key?(:steps)
  @substitutions = args[:substitutions] if args.key?(:substitutions)
  @tags = args[:tags] if args.key?(:tags)
  @timeout = args[:timeout] if args.key?(:timeout)
  @timing = args[:timing] if args.key?(:timing)
  @warnings = args[:warnings] if args.key?(:warnings)
end