google-cloud-spanner-admin-instance-v1 0.5.0 → 0.5.1

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: ff511c61193142872dfe9e5b9cea6e14e636478d8714abb6f75c27b1c768f9b1
4
- data.tar.gz: fc23262ae8898d00f13e691758de74489d9655fd9a02b18dbbc6bf139355af73
3
+ metadata.gz: 7b0cd16376d02c410ade9d96c4774b4a28f8171b196f76c284f50a9018aed026
4
+ data.tar.gz: 8942cf856286e8c21f0837285ea085202c6f3dc7c14f7fb7d8f0b00a932dbc24
5
5
  SHA512:
6
- metadata.gz: f3fe19f5df47dfe55fc5e1b767246a310c14700c0e84c19f7dc29fcbc5861135ebec19f5e565e5fa70ccec6ecc2c684cde224abafcde6024449a862b1508fec6
7
- data.tar.gz: e7202e2489b4ef98753e993682bad1d81e82a1f630fb4dd9ae07a7ddbee504647a11668d98d3b47bc0d09392d487b76d779ab6e4794c4754b1f0d63f2ca849ba
6
+ metadata.gz: 5ccd139de64d74cc6c6778ef3adec780fb88629ec1b36bfef6f3c6dd64dee89e6b6b159842b08a1ea44a5de29a092ec7606eaffed2f2c755b06a06223df282d5
7
+ data.tar.gz: 352743ed061d853dcc982b55d0c6c79afd465c62f0bc5b9a4aa743fb18fa280b31fca15c6e39a199bf1c60b52b7fc4d40062b28fe3a264e83b8eee142de95e4a
data/AUTHENTICATION.md CHANGED
@@ -82,8 +82,8 @@ client = ::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client.ne
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/spanner/admin/instance/v1"
@@ -93,7 +93,7 @@ client = ::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client.ne
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/spanner/admin/instance/v1"
@@ -398,9 +398,9 @@ module Google
398
398
  end
399
399
 
400
400
  ##
401
- # Waits for the specified long-running operation until it is done or reaches
402
- # at most a specified timeout, returning the latest state. If the operation
403
- # is already done, the latest state is immediately returned. If the timeout
401
+ # Waits until the specified long-running operation is done or reaches at most
402
+ # a specified timeout, returning the latest state. If the operation is
403
+ # already done, the latest state is immediately returned. If the timeout
404
404
  # specified is greater than the default HTTP/RPC timeout, the HTTP/RPC
405
405
  # timeout is used. If the server does not support this method, it returns
406
406
  # `google.rpc.Code.UNIMPLEMENTED`.
@@ -23,7 +23,7 @@ module Google
23
23
  module Admin
24
24
  module Instance
25
25
  module V1
26
- VERSION = "0.5.0"
26
+ VERSION = "0.5.1"
27
27
  end
28
28
  end
29
29
  end
@@ -49,7 +49,7 @@ module Google
49
49
  # databases in that instance, and their performance may suffer.
50
50
  class Service
51
51
 
52
- include ::GRPC::GenericService
52
+ include GRPC::GenericService
53
53
 
54
54
  self.marshal_class_method = :encode
55
55
  self.unmarshal_class_method = :decode
@@ -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-spanner-admin-instance-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.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: 2021-07-07 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