google-apis-cloudbuild_v1 0.44.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: d935b39f6e071b849fec2eb4f9cb7103941ab988d770e05ca62e5732fae7ec00
4
- data.tar.gz: f872f35a93743c442f9e85288c9ba0af10a8f831de86e67dda78929b6bdc5528
3
+ metadata.gz: 816d392b9b8caf008495cd89ef3339d6b24ac413c1b4d3bb843a1926d31b3918
4
+ data.tar.gz: 976166969fa1ce5b2858db6ca7ef5b3b6d283ecfaf4b90168c7e961c1b281f1f
5
5
  SHA512:
6
- metadata.gz: 5d219cf07dabff905199a61e9394bb85d197922c20ae577c2e972012845061bc19a324290323b931f67c61d9ea64cf43a02a752032273274f388f2752ffc3ded
7
- data.tar.gz: aced8099bc78d7e55e205a654c44d03c9987330ff0c4489b32c29ea90153d4a4dcf290932d81e45c1c59f11d61a44f4bbcb41bb516aecd218451c9e4fe514c6d
6
+ metadata.gz: 299d2d3a292cc9b903b5ae67145b88a9dbf2eb8f81ee47245ebb698b6815d50189001ba949f7caf1de7ae0f75c6d6072db13a879152a8e1e312a429eb55f6725
7
+ data.tar.gz: 2070ccbecf3cef1c98df8976ee0a506907191340d06cf9b9e46ae9cf68468265660e62b1c1eb330b6679ee5009e215d2a16573c2a62234814ae345d0fb6ac85c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
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
+
8
+ ### v0.45.0 (2023-01-04)
9
+
10
+ * Regenerated from discovery document revision 20230102
11
+
3
12
  ### v0.44.0 (2022-12-05)
4
13
 
5
14
  * Regenerated from discovery document revision 20221201
@@ -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
@@ -2872,13 +2853,12 @@ module Google
2872
2853
  attr_accessor :peered_network
2873
2854
 
2874
2855
  # Immutable. Subnet IP range within the peered network. This is specified in
2875
- # CIDR notation. The IP and prefix size are both optional. If unspecified, the
2876
- # default value for IP is blank (will use an automatic value from the peered
2877
- # network), and the prefix size will default to 24 bits. e.g. `192.168.0.0/30`
2878
- # would specify a subnet mask of 192.168.0.0 with a prefix size of 30 bits. `192.
2879
- # 168.0.0` would specify a subnet mask of 192.168.0.0 with a prefix size of 24
2880
- # bits (the default prefix size). `/16` would specify a prefix size of 16 bits,
2881
- # with an unspecified IP.
2856
+ # CIDR notation with a slash and the subnet prefix size. You can optionally
2857
+ # specify an IP address before the subnet prefix value. e.g. `192.168.0.0/29`
2858
+ # would specify an IP range starting at 192.168.0.0 with a prefix size of 29
2859
+ # bits. `/16` would specify a prefix size of 16 bits, with an automatically
2860
+ # determined IP within the peered VPC. If unspecified, a value of `/24` will be
2861
+ # used.
2882
2862
  # Corresponds to the JSON property `peeredNetworkIpRange`
2883
2863
  # @return [String]
2884
2864
  attr_accessor :peered_network_ip_range
@@ -2895,198 +2875,6 @@ module Google
2895
2875
  end
2896
2876
  end
2897
2877
 
2898
- # Notification is the container which holds the data that is relevant to this
2899
- # particular notification.
2900
- class Notification
2901
- include Google::Apis::Core::Hashable
2902
-
2903
- # The filter string to use for notification filtering. Currently, this is
2904
- # assumed to be a CEL program. See https://opensource.google/projects/cel for
2905
- # more.
2906
- # Corresponds to the JSON property `filter`
2907
- # @return [String]
2908
- attr_accessor :filter
2909
-
2910
- # HTTPDelivery is the delivery configuration for an HTTP notification.
2911
- # Corresponds to the JSON property `httpDelivery`
2912
- # @return [Google::Apis::CloudbuildV1::HttpDelivery]
2913
- attr_accessor :http_delivery
2914
-
2915
- # SlackDelivery is the delivery configuration for delivering Slack messages via
2916
- # webhooks. See Slack webhook documentation at: https://api.slack.com/messaging/
2917
- # webhooks.
2918
- # Corresponds to the JSON property `slackDelivery`
2919
- # @return [Google::Apis::CloudbuildV1::SlackDelivery]
2920
- attr_accessor :slack_delivery
2921
-
2922
- # SMTPDelivery is the delivery configuration for an SMTP (email) notification.
2923
- # Corresponds to the JSON property `smtpDelivery`
2924
- # @return [Google::Apis::CloudbuildV1::SmtpDelivery]
2925
- attr_accessor :smtp_delivery
2926
-
2927
- # Escape hatch for users to supply custom delivery configs.
2928
- # Corresponds to the JSON property `structDelivery`
2929
- # @return [Hash<String,Object>]
2930
- attr_accessor :struct_delivery
2931
-
2932
- def initialize(**args)
2933
- update!(**args)
2934
- end
2935
-
2936
- # Update properties of this object
2937
- def update!(**args)
2938
- @filter = args[:filter] if args.key?(:filter)
2939
- @http_delivery = args[:http_delivery] if args.key?(:http_delivery)
2940
- @slack_delivery = args[:slack_delivery] if args.key?(:slack_delivery)
2941
- @smtp_delivery = args[:smtp_delivery] if args.key?(:smtp_delivery)
2942
- @struct_delivery = args[:struct_delivery] if args.key?(:struct_delivery)
2943
- end
2944
- end
2945
-
2946
- # NotifierConfig is the top-level configuration message.
2947
- class NotifierConfig
2948
- include Google::Apis::Core::Hashable
2949
-
2950
- # The API version of this configuration format.
2951
- # Corresponds to the JSON property `apiVersion`
2952
- # @return [String]
2953
- attr_accessor :api_version
2954
-
2955
- # The type of notifier to use (e.g. SMTPNotifier).
2956
- # Corresponds to the JSON property `kind`
2957
- # @return [String]
2958
- attr_accessor :kind
2959
-
2960
- # NotifierMetadata contains the data which can be used to reference or describe
2961
- # this notifier.
2962
- # Corresponds to the JSON property `metadata`
2963
- # @return [Google::Apis::CloudbuildV1::NotifierMetadata]
2964
- attr_accessor :metadata
2965
-
2966
- # NotifierSpec is the configuration container for notifications.
2967
- # Corresponds to the JSON property `spec`
2968
- # @return [Google::Apis::CloudbuildV1::NotifierSpec]
2969
- attr_accessor :spec
2970
-
2971
- def initialize(**args)
2972
- update!(**args)
2973
- end
2974
-
2975
- # Update properties of this object
2976
- def update!(**args)
2977
- @api_version = args[:api_version] if args.key?(:api_version)
2978
- @kind = args[:kind] if args.key?(:kind)
2979
- @metadata = args[:metadata] if args.key?(:metadata)
2980
- @spec = args[:spec] if args.key?(:spec)
2981
- end
2982
- end
2983
-
2984
- # NotifierMetadata contains the data which can be used to reference or describe
2985
- # this notifier.
2986
- class NotifierMetadata
2987
- include Google::Apis::Core::Hashable
2988
-
2989
- # The human-readable and user-given name for the notifier. For example: "repo-
2990
- # merge-email-notifier".
2991
- # Corresponds to the JSON property `name`
2992
- # @return [String]
2993
- attr_accessor :name
2994
-
2995
- # The string representing the name and version of notifier to deploy. Expected
2996
- # to be of the form of "/:". For example: "gcr.io/my-project/notifiers/smtp:1.2.
2997
- # 34".
2998
- # Corresponds to the JSON property `notifier`
2999
- # @return [String]
3000
- attr_accessor :notifier
3001
-
3002
- def initialize(**args)
3003
- update!(**args)
3004
- end
3005
-
3006
- # Update properties of this object
3007
- def update!(**args)
3008
- @name = args[:name] if args.key?(:name)
3009
- @notifier = args[:notifier] if args.key?(:notifier)
3010
- end
3011
- end
3012
-
3013
- # NotifierSecret is the container that maps a secret name (reference) to its
3014
- # Google Cloud Secret Manager resource path.
3015
- class NotifierSecret
3016
- include Google::Apis::Core::Hashable
3017
-
3018
- # Name is the local name of the secret, such as the verbatim string "my-smtp-
3019
- # password".
3020
- # Corresponds to the JSON property `name`
3021
- # @return [String]
3022
- attr_accessor :name
3023
-
3024
- # Value is interpreted to be a resource path for fetching the actual (versioned)
3025
- # secret data for this secret. For example, this would be a Google Cloud Secret
3026
- # Manager secret version resource path like: "projects/my-project/secrets/my-
3027
- # secret/versions/latest".
3028
- # Corresponds to the JSON property `value`
3029
- # @return [String]
3030
- attr_accessor :value
3031
-
3032
- def initialize(**args)
3033
- update!(**args)
3034
- end
3035
-
3036
- # Update properties of this object
3037
- def update!(**args)
3038
- @name = args[:name] if args.key?(:name)
3039
- @value = args[:value] if args.key?(:value)
3040
- end
3041
- end
3042
-
3043
- # NotifierSecretRef contains the reference to a secret stored in the
3044
- # corresponding NotifierSpec.
3045
- class NotifierSecretRef
3046
- include Google::Apis::Core::Hashable
3047
-
3048
- # The value of `secret_ref` should be a `name` that is registered in a `Secret`
3049
- # in the `secrets` list of the `Spec`.
3050
- # Corresponds to the JSON property `secretRef`
3051
- # @return [String]
3052
- attr_accessor :secret_ref
3053
-
3054
- def initialize(**args)
3055
- update!(**args)
3056
- end
3057
-
3058
- # Update properties of this object
3059
- def update!(**args)
3060
- @secret_ref = args[:secret_ref] if args.key?(:secret_ref)
3061
- end
3062
- end
3063
-
3064
- # NotifierSpec is the configuration container for notifications.
3065
- class NotifierSpec
3066
- include Google::Apis::Core::Hashable
3067
-
3068
- # Notification is the container which holds the data that is relevant to this
3069
- # particular notification.
3070
- # Corresponds to the JSON property `notification`
3071
- # @return [Google::Apis::CloudbuildV1::Notification]
3072
- attr_accessor :notification
3073
-
3074
- # Configurations for secret resources used by this particular notifier.
3075
- # Corresponds to the JSON property `secrets`
3076
- # @return [Array<Google::Apis::CloudbuildV1::NotifierSecret>]
3077
- attr_accessor :secrets
3078
-
3079
- def initialize(**args)
3080
- update!(**args)
3081
- end
3082
-
3083
- # Update properties of this object
3084
- def update!(**args)
3085
- @notification = args[:notification] if args.key?(:notification)
3086
- @secrets = args[:secrets] if args.key?(:secrets)
3087
- end
3088
- end
3089
-
3090
2878
  # This resource represents a long-running operation that is the result of a
3091
2879
  # network API call.
3092
2880
  class Operation
@@ -3723,58 +3511,6 @@ module Google
3723
3511
  end
3724
3512
  end
3725
3513
 
3726
- # SMTPDelivery is the delivery configuration for an SMTP (email) notification.
3727
- class SmtpDelivery
3728
- include Google::Apis::Core::Hashable
3729
-
3730
- # This is the SMTP account/email that appears in the `From:` of the email. If
3731
- # empty, it is assumed to be sender.
3732
- # Corresponds to the JSON property `fromAddress`
3733
- # @return [String]
3734
- attr_accessor :from_address
3735
-
3736
- # NotifierSecretRef contains the reference to a secret stored in the
3737
- # corresponding NotifierSpec.
3738
- # Corresponds to the JSON property `password`
3739
- # @return [Google::Apis::CloudbuildV1::NotifierSecretRef]
3740
- attr_accessor :password
3741
-
3742
- # The SMTP port of the server.
3743
- # Corresponds to the JSON property `port`
3744
- # @return [String]
3745
- attr_accessor :port
3746
-
3747
- # This is the list of addresses to which we send the email (i.e. in the `To:` of
3748
- # the email).
3749
- # Corresponds to the JSON property `recipientAddresses`
3750
- # @return [Array<String>]
3751
- attr_accessor :recipient_addresses
3752
-
3753
- # This is the SMTP account/email that is used to send the message.
3754
- # Corresponds to the JSON property `senderAddress`
3755
- # @return [String]
3756
- attr_accessor :sender_address
3757
-
3758
- # The address of the SMTP server.
3759
- # Corresponds to the JSON property `server`
3760
- # @return [String]
3761
- attr_accessor :server
3762
-
3763
- def initialize(**args)
3764
- update!(**args)
3765
- end
3766
-
3767
- # Update properties of this object
3768
- def update!(**args)
3769
- @from_address = args[:from_address] if args.key?(:from_address)
3770
- @password = args[:password] if args.key?(:password)
3771
- @port = args[:port] if args.key?(:port)
3772
- @recipient_addresses = args[:recipient_addresses] if args.key?(:recipient_addresses)
3773
- @sender_address = args[:sender_address] if args.key?(:sender_address)
3774
- @server = args[:server] if args.key?(:server)
3775
- end
3776
- end
3777
-
3778
3514
  # Pairs a set of secret environment variables containing encrypted values with
3779
3515
  # the Cloud KMS key to use to decrypt the value. Note: Use `kmsKeyName` with `
3780
3516
  # available_secrets` instead of using `kmsKeyName` with `secret`. For
@@ -3880,28 +3616,6 @@ module Google
3880
3616
  end
3881
3617
  end
3882
3618
 
3883
- # SlackDelivery is the delivery configuration for delivering Slack messages via
3884
- # webhooks. See Slack webhook documentation at: https://api.slack.com/messaging/
3885
- # webhooks.
3886
- class SlackDelivery
3887
- include Google::Apis::Core::Hashable
3888
-
3889
- # NotifierSecretRef contains the reference to a secret stored in the
3890
- # corresponding NotifierSpec.
3891
- # Corresponds to the JSON property `webhookUri`
3892
- # @return [Google::Apis::CloudbuildV1::NotifierSecretRef]
3893
- attr_accessor :webhook_uri
3894
-
3895
- def initialize(**args)
3896
- update!(**args)
3897
- end
3898
-
3899
- # Update properties of this object
3900
- def update!(**args)
3901
- @webhook_uri = args[:webhook_uri] if args.key?(:webhook_uri)
3902
- end
3903
- end
3904
-
3905
3619
  # Location of the source in a supported storage service.
3906
3620
  class Source
3907
3621
  include Google::Apis::Core::Hashable
@@ -4397,7 +4111,7 @@ module Google
4397
4111
 
4398
4112
  # Size of the disk attached to the worker, in GB. See [Worker pool config file](
4399
4113
  # https://cloud.google.com/build/docs/private-pools/worker-pool-config-file-
4400
- # 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
4401
4115
  # use a standard disk size.
4402
4116
  # Corresponds to the JSON property `diskSizeGb`
4403
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.44.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 = "20221201"
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.44.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: 2022-12-12 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.44.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