google-cloud-batch-v1 0.18.0 → 0.18.1

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: eeec030e194afbb380afc6822b693b9219c79b0a6320c6b16bb38c42d762bd40
4
- data.tar.gz: a5ac3933b17a3153c73903ba77ab8756bbd8fb195d84daf7a6b4272810eadac1
3
+ metadata.gz: a89581df3e75447efb56da31ea63cbbfff56ecd91db8ed93a913356731495d13
4
+ data.tar.gz: f5a3ccc0fc8de54f8c03f052db7eebc004050da5a926aac73a8711687c3bb236
5
5
  SHA512:
6
- metadata.gz: 21a8ed3c3cff033ff9738f018cb3da28d81d5fdb7ec456a21cfdf338657535e47df159459d7e80847ea191fef3cab4d325fe572b36e191bc26aeccf1297edf69
7
- data.tar.gz: bd3a51312fd790a0b1f3090bb3497ac6df77099c4cf57de949e7b16d6a4b2e217148b886c2abdca52c08023350d49da618b8e42a4161faf0ef08e31d3c060656
6
+ metadata.gz: ad73fac26914fa4273248f1fd793f4510e3c1e5b563e7324c9f052b8faa557f2b729e06263e1da9a8092bc96ed17f42c5bc1370ae0f0e17827e09644d09202e5
7
+ data.tar.gz: de6915c91dcf4b1bace5170d5f52ae6e4ed3f9c75b6499c826557fd0829093bcd03c87675e38c5ea43961fd5c174d5c94744c1b79864c662c97038aa2de26b59
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Batch
23
23
  module V1
24
- VERSION = "0.18.0"
24
+ VERSION = "0.18.1"
25
25
  end
26
26
  end
27
27
  end
@@ -290,6 +290,13 @@ module Google
290
290
  # @return [::String]
291
291
  # The fully qualified name of the method, for which the options below apply.
292
292
  # This is used to find the method to apply the options.
293
+ #
294
+ # Example:
295
+ #
296
+ # publishing:
297
+ # method_settings:
298
+ # - selector: google.storage.control.v2.StorageControl.CreateFolder
299
+ # # method settings for CreateFolder...
293
300
  # @!attribute [rw] long_running
294
301
  # @return [::Google::Api::MethodSettings::LongRunning]
295
302
  # Describes settings to use for long-running operations when generating
@@ -298,17 +305,14 @@ module Google
298
305
  #
299
306
  # Example of a YAML configuration::
300
307
  #
301
- # publishing:
302
- # method_settings:
308
+ # publishing:
309
+ # method_settings:
303
310
  # - selector: google.cloud.speech.v2.Speech.BatchRecognize
304
311
  # long_running:
305
- # initial_poll_delay:
306
- # seconds: 60 # 1 minute
312
+ # initial_poll_delay: 60s # 1 minute
307
313
  # poll_delay_multiplier: 1.5
308
- # max_poll_delay:
309
- # seconds: 360 # 6 minutes
310
- # total_poll_timeout:
311
- # seconds: 54000 # 90 minutes
314
+ # max_poll_delay: 360s # 6 minutes
315
+ # total_poll_timeout: 54000s # 90 minutes
312
316
  # @!attribute [rw] auto_populated_fields
313
317
  # @return [::Array<::String>]
314
318
  # List of top-level fields of the request message, that should be
@@ -317,8 +321,8 @@ module Google
317
321
  #
318
322
  # Example of a YAML configuration:
319
323
  #
320
- # publishing:
321
- # method_settings:
324
+ # publishing:
325
+ # method_settings:
322
326
  # - selector: google.example.v1.ExampleService.CreateExample
323
327
  # auto_populated_fields:
324
328
  # - request_id
@@ -25,6 +25,12 @@ module Google
25
25
  # The standard format of a field value. This does not explicitly configure
26
26
  # any API consumer, just documents the API's format for the field it is
27
27
  # applied to.
28
+ # @!attribute [rw] referenced_types
29
+ # @return [::Array<::Google::Api::TypeReference>]
30
+ # The type(s) that the annotated, generic field may represent.
31
+ #
32
+ # Currently, this must only be used on fields of type `google.protobuf.Any`.
33
+ # Supporting other generic types may be considered in the future.
28
34
  class FieldInfo
29
35
  include ::Google::Protobuf::MessageExts
30
36
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -61,5 +67,22 @@ module Google
61
67
  IPV4_OR_IPV6 = 4
62
68
  end
63
69
  end
70
+
71
+ # A reference to a message type, for use in {::Google::Api::FieldInfo FieldInfo}.
72
+ # @!attribute [rw] type_name
73
+ # @return [::String]
74
+ # The name of the type that the annotated, generic field may represent.
75
+ # If the type is in the same protobuf package, the value can be the simple
76
+ # message name e.g., `"MyMessage"`. Otherwise, the value must be the
77
+ # fully-qualified message name e.g., `"google.library.v1.Book"`.
78
+ #
79
+ # If the type(s) are unknown to the service (e.g. the field accepts generic
80
+ # user input), use the wildcard `"*"` to denote this behavior.
81
+ #
82
+ # See [AIP-202](https://google.aip.dev/202#type-references) for more details.
83
+ class TypeReference
84
+ include ::Google::Protobuf::MessageExts
85
+ extend ::Google::Protobuf::MessageExts::ClassMethods
86
+ end
64
87
  end
65
88
  end
@@ -124,8 +124,13 @@ module Google
124
124
  # @return [::String]
125
125
  # The plural name used in the resource name and permission names, such as
126
126
  # 'projects' for the resource name of 'projects/\\{project}' and the permission
127
- # name of 'cloudresourcemanager.googleapis.com/projects.get'. It is the same
128
- # concept of the `plural` field in k8s CRD spec
127
+ # name of 'cloudresourcemanager.googleapis.com/projects.get'. One exception
128
+ # to this is for Nested Collections that have stuttering names, as defined
129
+ # in [AIP-122](https://google.aip.dev/122#nested-collections), where the
130
+ # collection ID in the resource name pattern does not necessarily directly
131
+ # match the `plural` value.
132
+ #
133
+ # It is the same concept of the `plural` field in k8s CRD spec
129
134
  # https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/
130
135
  #
131
136
  # Note: The plural form is required even for singleton resources. See
@@ -74,7 +74,7 @@ module Google
74
74
  extend ::Google::Protobuf::MessageExts::ClassMethods
75
75
  end
76
76
 
77
- # Status event
77
+ # Status event.
78
78
  # @!attribute [rw] type
79
79
  # @return [::String]
80
80
  # Type of the event.
@@ -86,10 +86,13 @@ module Google
86
86
  # The time this event occurred.
87
87
  # @!attribute [rw] task_execution
88
88
  # @return [::Google::Cloud::Batch::V1::TaskExecution]
89
- # Task Execution
89
+ # Task Execution.
90
+ # This field is only defined for task-level status events where the task
91
+ # fails.
90
92
  # @!attribute [rw] task_state
91
93
  # @return [::Google::Cloud::Batch::V1::TaskStatus::State]
92
- # Task State
94
+ # Task State.
95
+ # This field is only defined for task-level status events.
93
96
  class StatusEvent
94
97
  include ::Google::Protobuf::MessageExts
95
98
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -115,10 +118,10 @@ module Google
115
118
  extend ::Google::Protobuf::MessageExts::ClassMethods
116
119
  end
117
120
 
118
- # Status of a task
121
+ # Status of a task.
119
122
  # @!attribute [rw] state
120
123
  # @return [::Google::Cloud::Batch::V1::TaskStatus::State]
121
- # Task state
124
+ # Task state.
122
125
  # @!attribute [rw] status_events
123
126
  # @return [::Array<::Google::Cloud::Batch::V1::StatusEvent>]
124
127
  # Detailed info about why the state is reached.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-batch-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.18.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-27 00:00:00.000000000 Z
11
+ date: 2024-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common