google-apis-cloudbuild_v1 0.45.0 → 0.46.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3e1f769e6ba70188507c362dca37faa54951b32baaa250fcebfdfd81fae793d1
4
- data.tar.gz: f3cbd2cc146b39007565440a9fb849cf351028dde62a7b8974e05d9caa56b8af
3
+ metadata.gz: 816d392b9b8caf008495cd89ef3339d6b24ac413c1b4d3bb843a1926d31b3918
4
+ data.tar.gz: 976166969fa1ce5b2858db6ca7ef5b3b6d283ecfaf4b90168c7e961c1b281f1f
5
5
  SHA512:
6
- metadata.gz: 2788b2f9661f8930b835d621041d662515f96b0c7317fa69952160df33e93a2d653dc93d10d04083fe15c9fe16818253df2b75e202a18b380d748a45356344d7
7
- data.tar.gz: 5177acb0631e81fe7c621de995aad5b76f70cc7983d89594111c8a8c71e06d57a4225198bb4337b8f57e30330cc4aa851fa63d9931fb2146e31d6266d1f9c3e7
6
+ metadata.gz: 299d2d3a292cc9b903b5ae67145b88a9dbf2eb8f81ee47245ebb698b6815d50189001ba949f7caf1de7ae0f75c6d6072db13a879152a8e1e312a429eb55f6725
7
+ data.tar.gz: 2070ccbecf3cef1c98df8976ee0a506907191340d06cf9b9e46ae9cf68468265660e62b1c1eb330b6679ee5009e215d2a16573c2a62234814ae345d0fb6ac85c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-cloudbuild_v1
2
2
 
3
+ ### v0.46.0 (2023-01-22)
4
+
5
+ * Regenerated from discovery document revision 20230115
6
+ * Regenerated using generator version 0.11.1
7
+
3
8
  ### v0.45.0 (2023-01-04)
4
9
 
5
10
  * Regenerated from discovery document revision 20230102
@@ -828,7 +828,7 @@ module Google
828
828
  # Amount of time that this build should be allowed to run, to second granularity.
829
829
  # If this amount of time elapses, work on the build will cease and the build
830
830
  # status will be `TIMEOUT`. `timeout` starts ticking from `startTime`. Default
831
- # time is ten minutes.
831
+ # time is 60 minutes.
832
832
  # Corresponds to the JSON property `timeout`
833
833
  # @return [String]
834
834
  attr_accessor :timeout
@@ -2479,25 +2479,6 @@ module Google
2479
2479
  end
2480
2480
  end
2481
2481
 
2482
- # HTTPDelivery is the delivery configuration for an HTTP notification.
2483
- class HttpDelivery
2484
- include Google::Apis::Core::Hashable
2485
-
2486
- # The URI to which JSON-containing HTTP POST requests should be sent.
2487
- # Corresponds to the JSON property `uri`
2488
- # @return [String]
2489
- attr_accessor :uri
2490
-
2491
- def initialize(**args)
2492
- update!(**args)
2493
- end
2494
-
2495
- # Update properties of this object
2496
- def update!(**args)
2497
- @uri = args[:uri] if args.key?(:uri)
2498
- end
2499
- end
2500
-
2501
2482
  # Container message for hash values.
2502
2483
  class HashProp
2503
2484
  include Google::Apis::Core::Hashable
@@ -2894,198 +2875,6 @@ module Google
2894
2875
  end
2895
2876
  end
2896
2877
 
2897
- # Notification is the container which holds the data that is relevant to this
2898
- # particular notification.
2899
- class Notification
2900
- include Google::Apis::Core::Hashable
2901
-
2902
- # The filter string to use for notification filtering. Currently, this is
2903
- # assumed to be a CEL program. See https://opensource.google/projects/cel for
2904
- # more.
2905
- # Corresponds to the JSON property `filter`
2906
- # @return [String]
2907
- attr_accessor :filter
2908
-
2909
- # HTTPDelivery is the delivery configuration for an HTTP notification.
2910
- # Corresponds to the JSON property `httpDelivery`
2911
- # @return [Google::Apis::CloudbuildV1::HttpDelivery]
2912
- attr_accessor :http_delivery
2913
-
2914
- # SlackDelivery is the delivery configuration for delivering Slack messages via
2915
- # webhooks. See Slack webhook documentation at: https://api.slack.com/messaging/
2916
- # webhooks.
2917
- # Corresponds to the JSON property `slackDelivery`
2918
- # @return [Google::Apis::CloudbuildV1::SlackDelivery]
2919
- attr_accessor :slack_delivery
2920
-
2921
- # SMTPDelivery is the delivery configuration for an SMTP (email) notification.
2922
- # Corresponds to the JSON property `smtpDelivery`
2923
- # @return [Google::Apis::CloudbuildV1::SmtpDelivery]
2924
- attr_accessor :smtp_delivery
2925
-
2926
- # Escape hatch for users to supply custom delivery configs.
2927
- # Corresponds to the JSON property `structDelivery`
2928
- # @return [Hash<String,Object>]
2929
- attr_accessor :struct_delivery
2930
-
2931
- def initialize(**args)
2932
- update!(**args)
2933
- end
2934
-
2935
- # Update properties of this object
2936
- def update!(**args)
2937
- @filter = args[:filter] if args.key?(:filter)
2938
- @http_delivery = args[:http_delivery] if args.key?(:http_delivery)
2939
- @slack_delivery = args[:slack_delivery] if args.key?(:slack_delivery)
2940
- @smtp_delivery = args[:smtp_delivery] if args.key?(:smtp_delivery)
2941
- @struct_delivery = args[:struct_delivery] if args.key?(:struct_delivery)
2942
- end
2943
- end
2944
-
2945
- # NotifierConfig is the top-level configuration message.
2946
- class NotifierConfig
2947
- include Google::Apis::Core::Hashable
2948
-
2949
- # The API version of this configuration format.
2950
- # Corresponds to the JSON property `apiVersion`
2951
- # @return [String]
2952
- attr_accessor :api_version
2953
-
2954
- # The type of notifier to use (e.g. SMTPNotifier).
2955
- # Corresponds to the JSON property `kind`
2956
- # @return [String]
2957
- attr_accessor :kind
2958
-
2959
- # NotifierMetadata contains the data which can be used to reference or describe
2960
- # this notifier.
2961
- # Corresponds to the JSON property `metadata`
2962
- # @return [Google::Apis::CloudbuildV1::NotifierMetadata]
2963
- attr_accessor :metadata
2964
-
2965
- # NotifierSpec is the configuration container for notifications.
2966
- # Corresponds to the JSON property `spec`
2967
- # @return [Google::Apis::CloudbuildV1::NotifierSpec]
2968
- attr_accessor :spec
2969
-
2970
- def initialize(**args)
2971
- update!(**args)
2972
- end
2973
-
2974
- # Update properties of this object
2975
- def update!(**args)
2976
- @api_version = args[:api_version] if args.key?(:api_version)
2977
- @kind = args[:kind] if args.key?(:kind)
2978
- @metadata = args[:metadata] if args.key?(:metadata)
2979
- @spec = args[:spec] if args.key?(:spec)
2980
- end
2981
- end
2982
-
2983
- # NotifierMetadata contains the data which can be used to reference or describe
2984
- # this notifier.
2985
- class NotifierMetadata
2986
- include Google::Apis::Core::Hashable
2987
-
2988
- # The human-readable and user-given name for the notifier. For example: "repo-
2989
- # merge-email-notifier".
2990
- # Corresponds to the JSON property `name`
2991
- # @return [String]
2992
- attr_accessor :name
2993
-
2994
- # The string representing the name and version of notifier to deploy. Expected
2995
- # to be of the form of "/:". For example: "gcr.io/my-project/notifiers/smtp:1.2.
2996
- # 34".
2997
- # Corresponds to the JSON property `notifier`
2998
- # @return [String]
2999
- attr_accessor :notifier
3000
-
3001
- def initialize(**args)
3002
- update!(**args)
3003
- end
3004
-
3005
- # Update properties of this object
3006
- def update!(**args)
3007
- @name = args[:name] if args.key?(:name)
3008
- @notifier = args[:notifier] if args.key?(:notifier)
3009
- end
3010
- end
3011
-
3012
- # NotifierSecret is the container that maps a secret name (reference) to its
3013
- # Google Cloud Secret Manager resource path.
3014
- class NotifierSecret
3015
- include Google::Apis::Core::Hashable
3016
-
3017
- # Name is the local name of the secret, such as the verbatim string "my-smtp-
3018
- # password".
3019
- # Corresponds to the JSON property `name`
3020
- # @return [String]
3021
- attr_accessor :name
3022
-
3023
- # Value is interpreted to be a resource path for fetching the actual (versioned)
3024
- # secret data for this secret. For example, this would be a Google Cloud Secret
3025
- # Manager secret version resource path like: "projects/my-project/secrets/my-
3026
- # secret/versions/latest".
3027
- # Corresponds to the JSON property `value`
3028
- # @return [String]
3029
- attr_accessor :value
3030
-
3031
- def initialize(**args)
3032
- update!(**args)
3033
- end
3034
-
3035
- # Update properties of this object
3036
- def update!(**args)
3037
- @name = args[:name] if args.key?(:name)
3038
- @value = args[:value] if args.key?(:value)
3039
- end
3040
- end
3041
-
3042
- # NotifierSecretRef contains the reference to a secret stored in the
3043
- # corresponding NotifierSpec.
3044
- class NotifierSecretRef
3045
- include Google::Apis::Core::Hashable
3046
-
3047
- # The value of `secret_ref` should be a `name` that is registered in a `Secret`
3048
- # in the `secrets` list of the `Spec`.
3049
- # Corresponds to the JSON property `secretRef`
3050
- # @return [String]
3051
- attr_accessor :secret_ref
3052
-
3053
- def initialize(**args)
3054
- update!(**args)
3055
- end
3056
-
3057
- # Update properties of this object
3058
- def update!(**args)
3059
- @secret_ref = args[:secret_ref] if args.key?(:secret_ref)
3060
- end
3061
- end
3062
-
3063
- # NotifierSpec is the configuration container for notifications.
3064
- class NotifierSpec
3065
- include Google::Apis::Core::Hashable
3066
-
3067
- # Notification is the container which holds the data that is relevant to this
3068
- # particular notification.
3069
- # Corresponds to the JSON property `notification`
3070
- # @return [Google::Apis::CloudbuildV1::Notification]
3071
- attr_accessor :notification
3072
-
3073
- # Configurations for secret resources used by this particular notifier.
3074
- # Corresponds to the JSON property `secrets`
3075
- # @return [Array<Google::Apis::CloudbuildV1::NotifierSecret>]
3076
- attr_accessor :secrets
3077
-
3078
- def initialize(**args)
3079
- update!(**args)
3080
- end
3081
-
3082
- # Update properties of this object
3083
- def update!(**args)
3084
- @notification = args[:notification] if args.key?(:notification)
3085
- @secrets = args[:secrets] if args.key?(:secrets)
3086
- end
3087
- end
3088
-
3089
2878
  # This resource represents a long-running operation that is the result of a
3090
2879
  # network API call.
3091
2880
  class Operation
@@ -3722,58 +3511,6 @@ module Google
3722
3511
  end
3723
3512
  end
3724
3513
 
3725
- # SMTPDelivery is the delivery configuration for an SMTP (email) notification.
3726
- class SmtpDelivery
3727
- include Google::Apis::Core::Hashable
3728
-
3729
- # This is the SMTP account/email that appears in the `From:` of the email. If
3730
- # empty, it is assumed to be sender.
3731
- # Corresponds to the JSON property `fromAddress`
3732
- # @return [String]
3733
- attr_accessor :from_address
3734
-
3735
- # NotifierSecretRef contains the reference to a secret stored in the
3736
- # corresponding NotifierSpec.
3737
- # Corresponds to the JSON property `password`
3738
- # @return [Google::Apis::CloudbuildV1::NotifierSecretRef]
3739
- attr_accessor :password
3740
-
3741
- # The SMTP port of the server.
3742
- # Corresponds to the JSON property `port`
3743
- # @return [String]
3744
- attr_accessor :port
3745
-
3746
- # This is the list of addresses to which we send the email (i.e. in the `To:` of
3747
- # the email).
3748
- # Corresponds to the JSON property `recipientAddresses`
3749
- # @return [Array<String>]
3750
- attr_accessor :recipient_addresses
3751
-
3752
- # This is the SMTP account/email that is used to send the message.
3753
- # Corresponds to the JSON property `senderAddress`
3754
- # @return [String]
3755
- attr_accessor :sender_address
3756
-
3757
- # The address of the SMTP server.
3758
- # Corresponds to the JSON property `server`
3759
- # @return [String]
3760
- attr_accessor :server
3761
-
3762
- def initialize(**args)
3763
- update!(**args)
3764
- end
3765
-
3766
- # Update properties of this object
3767
- def update!(**args)
3768
- @from_address = args[:from_address] if args.key?(:from_address)
3769
- @password = args[:password] if args.key?(:password)
3770
- @port = args[:port] if args.key?(:port)
3771
- @recipient_addresses = args[:recipient_addresses] if args.key?(:recipient_addresses)
3772
- @sender_address = args[:sender_address] if args.key?(:sender_address)
3773
- @server = args[:server] if args.key?(:server)
3774
- end
3775
- end
3776
-
3777
3514
  # Pairs a set of secret environment variables containing encrypted values with
3778
3515
  # the Cloud KMS key to use to decrypt the value. Note: Use `kmsKeyName` with `
3779
3516
  # available_secrets` instead of using `kmsKeyName` with `secret`. For
@@ -3879,28 +3616,6 @@ module Google
3879
3616
  end
3880
3617
  end
3881
3618
 
3882
- # SlackDelivery is the delivery configuration for delivering Slack messages via
3883
- # webhooks. See Slack webhook documentation at: https://api.slack.com/messaging/
3884
- # webhooks.
3885
- class SlackDelivery
3886
- include Google::Apis::Core::Hashable
3887
-
3888
- # NotifierSecretRef contains the reference to a secret stored in the
3889
- # corresponding NotifierSpec.
3890
- # Corresponds to the JSON property `webhookUri`
3891
- # @return [Google::Apis::CloudbuildV1::NotifierSecretRef]
3892
- attr_accessor :webhook_uri
3893
-
3894
- def initialize(**args)
3895
- update!(**args)
3896
- end
3897
-
3898
- # Update properties of this object
3899
- def update!(**args)
3900
- @webhook_uri = args[:webhook_uri] if args.key?(:webhook_uri)
3901
- end
3902
- end
3903
-
3904
3619
  # Location of the source in a supported storage service.
3905
3620
  class Source
3906
3621
  include Google::Apis::Core::Hashable
@@ -4396,7 +4111,7 @@ module Google
4396
4111
 
4397
4112
  # Size of the disk attached to the worker, in GB. See [Worker pool config file](
4398
4113
  # https://cloud.google.com/build/docs/private-pools/worker-pool-config-file-
4399
- # schema). Specify a value of up to 1000. If `0` is specified, Cloud Build will
4114
+ # schema). Specify a value of up to 2000. If `0` is specified, Cloud Build will
4400
4115
  # use a standard disk size.
4401
4116
  # Corresponds to the JSON property `diskSizeGb`
4402
4117
  # @return [Fixnum]
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudbuildV1
18
18
  # Version of the google-apis-cloudbuild_v1 gem
19
- GEM_VERSION = "0.45.0"
19
+ GEM_VERSION = "0.46.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230102"
25
+ REVISION = "20230115"
26
26
  end
27
27
  end
28
28
  end
@@ -334,12 +334,6 @@ module Google
334
334
  include Google::Apis::Core::JsonObjectSupport
335
335
  end
336
336
 
337
- class HttpDelivery
338
- class Representation < Google::Apis::Core::JsonRepresentation; end
339
-
340
- include Google::Apis::Core::JsonObjectSupport
341
- end
342
-
343
337
  class HashProp
344
338
  class Representation < Google::Apis::Core::JsonRepresentation; end
345
339
 
@@ -418,42 +412,6 @@ module Google
418
412
  include Google::Apis::Core::JsonObjectSupport
419
413
  end
420
414
 
421
- class Notification
422
- class Representation < Google::Apis::Core::JsonRepresentation; end
423
-
424
- include Google::Apis::Core::JsonObjectSupport
425
- end
426
-
427
- class NotifierConfig
428
- class Representation < Google::Apis::Core::JsonRepresentation; end
429
-
430
- include Google::Apis::Core::JsonObjectSupport
431
- end
432
-
433
- class NotifierMetadata
434
- class Representation < Google::Apis::Core::JsonRepresentation; end
435
-
436
- include Google::Apis::Core::JsonObjectSupport
437
- end
438
-
439
- class NotifierSecret
440
- class Representation < Google::Apis::Core::JsonRepresentation; end
441
-
442
- include Google::Apis::Core::JsonObjectSupport
443
- end
444
-
445
- class NotifierSecretRef
446
- class Representation < Google::Apis::Core::JsonRepresentation; end
447
-
448
- include Google::Apis::Core::JsonObjectSupport
449
- end
450
-
451
- class NotifierSpec
452
- class Representation < Google::Apis::Core::JsonRepresentation; end
453
-
454
- include Google::Apis::Core::JsonObjectSupport
455
- end
456
-
457
415
  class Operation
458
416
  class Representation < Google::Apis::Core::JsonRepresentation; end
459
417
 
@@ -556,12 +514,6 @@ module Google
556
514
  include Google::Apis::Core::JsonObjectSupport
557
515
  end
558
516
 
559
- class SmtpDelivery
560
- class Representation < Google::Apis::Core::JsonRepresentation; end
561
-
562
- include Google::Apis::Core::JsonObjectSupport
563
- end
564
-
565
517
  class Secret
566
518
  class Representation < Google::Apis::Core::JsonRepresentation; end
567
519
 
@@ -586,12 +538,6 @@ module Google
586
538
  include Google::Apis::Core::JsonObjectSupport
587
539
  end
588
540
 
589
- class SlackDelivery
590
- class Representation < Google::Apis::Core::JsonRepresentation; end
591
-
592
- include Google::Apis::Core::JsonObjectSupport
593
- end
594
-
595
541
  class Source
596
542
  class Representation < Google::Apis::Core::JsonRepresentation; end
597
543
 
@@ -1318,13 +1264,6 @@ module Google
1318
1264
  end
1319
1265
  end
1320
1266
 
1321
- class HttpDelivery
1322
- # @private
1323
- class Representation < Google::Apis::Core::JsonRepresentation
1324
- property :uri, as: 'uri'
1325
- end
1326
- end
1327
-
1328
1267
  class HashProp
1329
1268
  # @private
1330
1269
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1441,65 +1380,6 @@ module Google
1441
1380
  end
1442
1381
  end
1443
1382
 
1444
- class Notification
1445
- # @private
1446
- class Representation < Google::Apis::Core::JsonRepresentation
1447
- property :filter, as: 'filter'
1448
- property :http_delivery, as: 'httpDelivery', class: Google::Apis::CloudbuildV1::HttpDelivery, decorator: Google::Apis::CloudbuildV1::HttpDelivery::Representation
1449
-
1450
- property :slack_delivery, as: 'slackDelivery', class: Google::Apis::CloudbuildV1::SlackDelivery, decorator: Google::Apis::CloudbuildV1::SlackDelivery::Representation
1451
-
1452
- property :smtp_delivery, as: 'smtpDelivery', class: Google::Apis::CloudbuildV1::SmtpDelivery, decorator: Google::Apis::CloudbuildV1::SmtpDelivery::Representation
1453
-
1454
- hash :struct_delivery, as: 'structDelivery'
1455
- end
1456
- end
1457
-
1458
- class NotifierConfig
1459
- # @private
1460
- class Representation < Google::Apis::Core::JsonRepresentation
1461
- property :api_version, as: 'apiVersion'
1462
- property :kind, as: 'kind'
1463
- property :metadata, as: 'metadata', class: Google::Apis::CloudbuildV1::NotifierMetadata, decorator: Google::Apis::CloudbuildV1::NotifierMetadata::Representation
1464
-
1465
- property :spec, as: 'spec', class: Google::Apis::CloudbuildV1::NotifierSpec, decorator: Google::Apis::CloudbuildV1::NotifierSpec::Representation
1466
-
1467
- end
1468
- end
1469
-
1470
- class NotifierMetadata
1471
- # @private
1472
- class Representation < Google::Apis::Core::JsonRepresentation
1473
- property :name, as: 'name'
1474
- property :notifier, as: 'notifier'
1475
- end
1476
- end
1477
-
1478
- class NotifierSecret
1479
- # @private
1480
- class Representation < Google::Apis::Core::JsonRepresentation
1481
- property :name, as: 'name'
1482
- property :value, as: 'value'
1483
- end
1484
- end
1485
-
1486
- class NotifierSecretRef
1487
- # @private
1488
- class Representation < Google::Apis::Core::JsonRepresentation
1489
- property :secret_ref, as: 'secretRef'
1490
- end
1491
- end
1492
-
1493
- class NotifierSpec
1494
- # @private
1495
- class Representation < Google::Apis::Core::JsonRepresentation
1496
- property :notification, as: 'notification', class: Google::Apis::CloudbuildV1::Notification, decorator: Google::Apis::CloudbuildV1::Notification::Representation
1497
-
1498
- collection :secrets, as: 'secrets', class: Google::Apis::CloudbuildV1::NotifierSecret, decorator: Google::Apis::CloudbuildV1::NotifierSecret::Representation
1499
-
1500
- end
1501
- end
1502
-
1503
1383
  class Operation
1504
1384
  # @private
1505
1385
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1672,19 +1552,6 @@ module Google
1672
1552
  end
1673
1553
  end
1674
1554
 
1675
- class SmtpDelivery
1676
- # @private
1677
- class Representation < Google::Apis::Core::JsonRepresentation
1678
- property :from_address, as: 'fromAddress'
1679
- property :password, as: 'password', class: Google::Apis::CloudbuildV1::NotifierSecretRef, decorator: Google::Apis::CloudbuildV1::NotifierSecretRef::Representation
1680
-
1681
- property :port, as: 'port'
1682
- collection :recipient_addresses, as: 'recipientAddresses'
1683
- property :sender_address, as: 'senderAddress'
1684
- property :server, as: 'server'
1685
- end
1686
- end
1687
-
1688
1555
  class Secret
1689
1556
  # @private
1690
1557
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1718,14 +1585,6 @@ module Google
1718
1585
  end
1719
1586
  end
1720
1587
 
1721
- class SlackDelivery
1722
- # @private
1723
- class Representation < Google::Apis::Core::JsonRepresentation
1724
- property :webhook_uri, as: 'webhookUri', class: Google::Apis::CloudbuildV1::NotifierSecretRef, decorator: Google::Apis::CloudbuildV1::NotifierSecretRef::Representation
1725
-
1726
- end
1727
- end
1728
-
1729
1588
  class Source
1730
1589
  # @private
1731
1590
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudbuild_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.45.0
4
+ version: 0.46.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-04 00:00:00.000000000 Z
11
+ date: 2023-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.45.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.46.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Build API V1