google-cloud-tasks-v2 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9c5579e7e8efc0a7537e322e1fa443c639fa570dff4e7a60de4397d0f0c28281
4
- data.tar.gz: 6eecc6045edd9d867a5b299cffda2b1af60155fb191649a23678d56e6987431a
3
+ metadata.gz: 0dff57970c590b2929782b5399d0da9aa907cf10129b6fab340c5118882fbe99
4
+ data.tar.gz: 1a4a0d51742babd0242552fb5b94a6f8a39a0f65317b0d69d24e63583211c19b
5
5
  SHA512:
6
- metadata.gz: 4d01acdc74bf4a683d8b8587dedf6fa58b9ed2a0b8962bb485c8e2a098210434bee0f98bca9ddaa499834258690eb1d6d10ca9989498ab0cd6f3363ae007dcfe
7
- data.tar.gz: 32dd42958ffb76f68129b8434fe4201f2ff1e39264977834037666b734f9648d7378b92d55542fabe80ed18f7e960ace8a30e8e79f8ab8d7f3ac6b8a68e4f01c
6
+ metadata.gz: 7e71fe08950383c91ea053ad1f41ff878797463ab7561b0beaa4c8381624b40c27d1143a9cb197969bbb502f5ef29cb58b365060c862ff7825fa4ab523a1997c
7
+ data.tar.gz: 1847a58485685653fc06a6e0a8694d95e103b166d3f65dcc4a0ee9f7a1d909c902dcf1ea23b50f5b626146dbad133a3d873ac2e836f729995bfd092a6335d6b3
data/AUTHENTICATION.md CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-tasks-v2
66
66
  checks for credentials are configured on the service Credentials class (such as
67
67
  {::Google::Cloud::Tasks::V2::CloudTasks::Credentials}):
68
68
 
69
- 1. `TASKS_CREDENTIALS` - Path to JSON file, or JSON contents
70
- 2. `TASKS_KEYFILE` - Path to JSON file, or JSON contents
71
- 3. `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
72
- 4. `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
73
- 5. `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
69
+ * `TASKS_CREDENTIALS` - Path to JSON file, or JSON contents
70
+ * `TASKS_KEYFILE` - Path to JSON file, or JSON contents
71
+ * `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
72
+ * `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
73
+ * `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
74
74
 
75
75
  ```ruby
76
76
  require "google/cloud/tasks/v2"
@@ -82,8 +82,8 @@ client = ::Google::Cloud::Tasks::V2::CloudTasks::Client.new
82
82
 
83
83
  ### Configuration
84
84
 
85
- The **Credentials JSON** can be configured instead of placing them in
86
- environment variables. Either on an individual client initialization:
85
+ The path to the **Credentials JSON** file can be configured instead of storing
86
+ it in an environment variable. Either on an individual client initialization:
87
87
 
88
88
  ```ruby
89
89
  require "google/cloud/tasks/v2"
@@ -93,7 +93,7 @@ client = ::Google::Cloud::Tasks::V2::CloudTasks::Client.new do |config|
93
93
  end
94
94
  ```
95
95
 
96
- Or configured globally for all clients:
96
+ Or globally for all clients:
97
97
 
98
98
  ```ruby
99
99
  require "google/cloud/tasks/v2"
data/README.md CHANGED
@@ -33,7 +33,7 @@ In order to use this library, you first need to go through the following steps:
33
33
  require "google/cloud/tasks/v2"
34
34
 
35
35
  client = ::Google::Cloud::Tasks::V2::CloudTasks::Client.new
36
- request = my_create_request
36
+ request = ::Google::Cloud::Tasks::V2::ListQueuesRequest.new # (request fields as keyword arguments...)
37
37
  response = client.list_queues request
38
38
  ```
39
39
 
@@ -68,18 +68,12 @@ module Google
68
68
 
69
69
  default_config.rpcs.list_queues.timeout = 10.0
70
70
  default_config.rpcs.list_queues.retry_policy = {
71
- initial_delay: 0.1,
72
- max_delay: 10.0,
73
- multiplier: 1.3,
74
- retry_codes: [4, 14]
71
+ initial_delay: 0.1, max_delay: 10.0, multiplier: 1.3, retry_codes: [4, 14]
75
72
  }
76
73
 
77
74
  default_config.rpcs.get_queue.timeout = 10.0
78
75
  default_config.rpcs.get_queue.retry_policy = {
79
- initial_delay: 0.1,
80
- max_delay: 10.0,
81
- multiplier: 1.3,
82
- retry_codes: [4, 14]
76
+ initial_delay: 0.1, max_delay: 10.0, multiplier: 1.3, retry_codes: [4, 14]
83
77
  }
84
78
 
85
79
  default_config.rpcs.create_queue.timeout = 10.0
@@ -88,10 +82,7 @@ module Google
88
82
 
89
83
  default_config.rpcs.delete_queue.timeout = 10.0
90
84
  default_config.rpcs.delete_queue.retry_policy = {
91
- initial_delay: 0.1,
92
- max_delay: 10.0,
93
- multiplier: 1.3,
94
- retry_codes: [4, 14]
85
+ initial_delay: 0.1, max_delay: 10.0, multiplier: 1.3, retry_codes: [4, 14]
95
86
  }
96
87
 
97
88
  default_config.rpcs.purge_queue.timeout = 10.0
@@ -102,46 +93,31 @@ module Google
102
93
 
103
94
  default_config.rpcs.get_iam_policy.timeout = 10.0
104
95
  default_config.rpcs.get_iam_policy.retry_policy = {
105
- initial_delay: 0.1,
106
- max_delay: 10.0,
107
- multiplier: 1.3,
108
- retry_codes: [4, 14]
96
+ initial_delay: 0.1, max_delay: 10.0, multiplier: 1.3, retry_codes: [4, 14]
109
97
  }
110
98
 
111
99
  default_config.rpcs.set_iam_policy.timeout = 10.0
112
100
 
113
101
  default_config.rpcs.test_iam_permissions.timeout = 10.0
114
102
  default_config.rpcs.test_iam_permissions.retry_policy = {
115
- initial_delay: 0.1,
116
- max_delay: 10.0,
117
- multiplier: 1.3,
118
- retry_codes: [4, 14]
103
+ initial_delay: 0.1, max_delay: 10.0, multiplier: 1.3, retry_codes: [4, 14]
119
104
  }
120
105
 
121
106
  default_config.rpcs.list_tasks.timeout = 10.0
122
107
  default_config.rpcs.list_tasks.retry_policy = {
123
- initial_delay: 0.1,
124
- max_delay: 10.0,
125
- multiplier: 1.3,
126
- retry_codes: [4, 14]
108
+ initial_delay: 0.1, max_delay: 10.0, multiplier: 1.3, retry_codes: [4, 14]
127
109
  }
128
110
 
129
111
  default_config.rpcs.get_task.timeout = 10.0
130
112
  default_config.rpcs.get_task.retry_policy = {
131
- initial_delay: 0.1,
132
- max_delay: 10.0,
133
- multiplier: 1.3,
134
- retry_codes: [4, 14]
113
+ initial_delay: 0.1, max_delay: 10.0, multiplier: 1.3, retry_codes: [4, 14]
135
114
  }
136
115
 
137
116
  default_config.rpcs.create_task.timeout = 10.0
138
117
 
139
118
  default_config.rpcs.delete_task.timeout = 10.0
140
119
  default_config.rpcs.delete_task.retry_policy = {
141
- initial_delay: 0.1,
142
- max_delay: 10.0,
143
- multiplier: 1.3,
144
- retry_codes: [4, 14]
120
+ initial_delay: 0.1, max_delay: 10.0, multiplier: 1.3, retry_codes: [4, 14]
145
121
  }
146
122
 
147
123
  default_config.rpcs.run_task.timeout = 10.0
@@ -214,7 +190,7 @@ module Google
214
190
  !@config.endpoint.split(".").first.include?("-")
215
191
  credentials ||= Credentials.default scope: @config.scope,
216
192
  enable_self_signed_jwt: enable_self_signed_jwt
217
- if credentials.is_a?(String) || credentials.is_a?(Hash)
193
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
218
194
  credentials = Credentials.new credentials, scope: @config.scope
219
195
  end
220
196
  @quota_project_id = @config.quota_project
@@ -29,7 +29,7 @@ module Google
29
29
  # work in their applications.
30
30
  class Service
31
31
 
32
- include ::GRPC::GenericService
32
+ include GRPC::GenericService
33
33
 
34
34
  self.marshal_class_method = :encode
35
35
  self.unmarshal_class_method = :decode
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Tasks
23
23
  module V2
24
- VERSION = "0.4.1"
24
+ VERSION = "0.4.2"
25
25
  end
26
26
  end
27
27
  end
@@ -57,9 +57,15 @@ module Google
57
57
 
58
58
  # Denotes that a (repeated) field is an unordered list.
59
59
  # This indicates that the service may provide the elements of the list
60
- # in any arbitrary order, rather than the order the user originally
60
+ # in any arbitrary order, rather than the order the user originally
61
61
  # provided. Additionally, the list's order may or may not be stable.
62
62
  UNORDERED_LIST = 6
63
+
64
+ # Denotes that this field returns a non-empty default value if not set.
65
+ # This indicates that if the user provides the empty value in a request,
66
+ # a non-empty value will be returned. The user will not be aware of what
67
+ # non-empty value to expect.
68
+ NON_EMPTY_DEFAULT = 7
63
69
  end
64
70
  end
65
71
  end
@@ -19,30 +19,53 @@
19
19
 
20
20
  module Google
21
21
  module Type
22
- # Represents an expression text. Example:
22
+ # Represents a textual expression in the Common Expression Language (CEL)
23
+ # syntax. CEL is a C-like expression language. The syntax and semantics of CEL
24
+ # are documented at https://github.com/google/cel-spec.
23
25
  #
24
- # title: "User account presence"
25
- # description: "Determines whether the request has a user account"
26
- # expression: "size(request.user) > 0"
26
+ # Example (Comparison):
27
+ #
28
+ # title: "Summary size limit"
29
+ # description: "Determines if a summary is less than 100 chars"
30
+ # expression: "document.summary.size() < 100"
31
+ #
32
+ # Example (Equality):
33
+ #
34
+ # title: "Requestor is owner"
35
+ # description: "Determines if requestor is the document owner"
36
+ # expression: "document.owner == request.auth.claims.email"
37
+ #
38
+ # Example (Logic):
39
+ #
40
+ # title: "Public documents"
41
+ # description: "Determine whether the document should be publicly visible"
42
+ # expression: "document.type != 'private' && document.type != 'internal'"
43
+ #
44
+ # Example (Data Manipulation):
45
+ #
46
+ # title: "Notification string"
47
+ # description: "Create a notification string with a timestamp."
48
+ # expression: "'New message received at ' + string(document.create_time)"
49
+ #
50
+ # The exact variables and functions that may be referenced within an expression
51
+ # are determined by the service that evaluates it. See the service
52
+ # documentation for additional information.
27
53
  # @!attribute [rw] expression
28
54
  # @return [::String]
29
- # Textual representation of an expression in
30
- # Common Expression Language syntax.
31
- #
32
- # The application context of the containing message determines which
33
- # well-known feature set of CEL is supported.
55
+ # Textual representation of an expression in Common Expression Language
56
+ # syntax.
34
57
  # @!attribute [rw] title
35
58
  # @return [::String]
36
- # An optional title for the expression, i.e. a short string describing
59
+ # Optional. Title for the expression, i.e. a short string describing
37
60
  # its purpose. This can be used e.g. in UIs which allow to enter the
38
61
  # expression.
39
62
  # @!attribute [rw] description
40
63
  # @return [::String]
41
- # An optional description of the expression. This is a longer text which
64
+ # Optional. Description of the expression. This is a longer text which
42
65
  # describes the expression, e.g. when hovered over it in a UI.
43
66
  # @!attribute [rw] location
44
67
  # @return [::String]
45
- # An optional string indicating the location of the expression for error
68
+ # Optional. String indicating the location of the expression for error
46
69
  # reporting, e.g. a file name and a position in the file.
47
70
  class Expr
48
71
  include ::Google::Protobuf::MessageExts
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-tasks-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-17 00:00:00.000000000 Z
11
+ date: 2021-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common