googleapis-common-protos-types 1.8.0 → 1.9.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: a674dd9ee526c7673bb2d6218b99e2f3c68d554dab8ac3d262c0ac6857132c02
4
- data.tar.gz: f7547fee864ad786fddfad84652d199e7d467be17ca76f8b03dd757859213728
3
+ metadata.gz: 2218b22612e5e1c99dfac57239f9a5b7adaf3f726569d9170a02f0737825aaa8
4
+ data.tar.gz: 2c6576a49387a89d861202cf0c3f2e8eec014860d0a7f419c6b899953389d3e5
5
5
  SHA512:
6
- metadata.gz: bb32348a310992d10d738b22ff78fc62605c8eac67119e6916d7d0902631ae7d4d9b55ec4c84225597eba546eab72c431f2ef149b263c4333788358138df4ddf
7
- data.tar.gz: 3e6e8196f86a317960602da14ee4c585e6715e2c00c40e27f940981b19791a3bc90c18026063eeac4088d6610b6afdd3d64500acc1d8fb4f8bcf0a5441ad8621
6
+ metadata.gz: 5e8b9857bf63aca4f838ae42f815fa8b3c23c199225d69fc7f30442d2320a6f767918732acdd3f3b85f957e3824f8f9a1f80e8569c9f2ddc9b8c1d65b6c0a6ba
7
+ data.tar.gz: ae57625c71cae80b286877d647eb36c37f8278c7d10c74b94dff5c878728500ff7440f6b41ed06eb1a5cacdf13807832acea10a2eced564bf0ab249d093dd6a6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release History
2
2
 
3
+ ### 1.9.0 (2023-09-19)
4
+
5
+ #### Features
6
+
7
+ * Added the "IDENTIFIER" field behavior ([#181](https://github.com/googleapis/common-protos-ruby/issues/181))
8
+
3
9
  ### 1.8.0 (2023-08-07)
4
10
 
5
11
  #### Features
@@ -7,7 +7,7 @@ require 'google/protobuf'
7
7
  require 'google/protobuf/descriptor_pb'
8
8
 
9
9
 
10
- descriptor_data = "\n\x1fgoogle/api/field_behavior.proto\x12\ngoogle.api\x1a google/protobuf/descriptor.proto*\xa6\x01\n\rFieldBehavior\x12\x1e\n\x1a\x46IELD_BEHAVIOR_UNSPECIFIED\x10\x00\x12\x0c\n\x08OPTIONAL\x10\x01\x12\x0c\n\x08REQUIRED\x10\x02\x12\x0f\n\x0bOUTPUT_ONLY\x10\x03\x12\x0e\n\nINPUT_ONLY\x10\x04\x12\r\n\tIMMUTABLE\x10\x05\x12\x12\n\x0eUNORDERED_LIST\x10\x06\x12\x15\n\x11NON_EMPTY_DEFAULT\x10\x07:Q\n\x0e\x66ield_behavior\x12\x1d.google.protobuf.FieldOptions\x18\x9c\x08 \x03(\x0e\x32\x19.google.api.FieldBehaviorBp\n\x0e\x63om.google.apiB\x12\x46ieldBehaviorProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\xa2\x02\x04GAPIb\x06proto3"
10
+ descriptor_data = "\n\x1fgoogle/api/field_behavior.proto\x12\ngoogle.api\x1a google/protobuf/descriptor.proto*\xb6\x01\n\rFieldBehavior\x12\x1e\n\x1a\x46IELD_BEHAVIOR_UNSPECIFIED\x10\x00\x12\x0c\n\x08OPTIONAL\x10\x01\x12\x0c\n\x08REQUIRED\x10\x02\x12\x0f\n\x0bOUTPUT_ONLY\x10\x03\x12\x0e\n\nINPUT_ONLY\x10\x04\x12\r\n\tIMMUTABLE\x10\x05\x12\x12\n\x0eUNORDERED_LIST\x10\x06\x12\x15\n\x11NON_EMPTY_DEFAULT\x10\x07\x12\x0e\n\nIDENTIFIER\x10\x08:Q\n\x0e\x66ield_behavior\x12\x1d.google.protobuf.FieldOptions\x18\x9c\x08 \x03(\x0e\x32\x19.google.api.FieldBehaviorBp\n\x0e\x63om.google.apiB\x12\x46ieldBehaviorProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\xa2\x02\x04GAPIb\x06proto3"
11
11
 
12
12
  pool = Google::Protobuf::DescriptorPool.generated_pool
13
13
 
@@ -130,4 +130,18 @@ end
130
130
  # // a non-empty value will be returned. The user will not be aware of what
131
131
  # // non-empty value to expect.
132
132
  # NON_EMPTY_DEFAULT = 7;
133
+ #
134
+ # // Denotes that the field in a resource (a message annotated with
135
+ # // google.api.resource) is used in the resource name to uniquely identify the
136
+ # // resource. For AIP-compliant APIs, this should only be applied to the
137
+ # // `name` field on the resource.
138
+ # //
139
+ # // This behavior should not be applied to references to other resources within
140
+ # // the message.
141
+ # //
142
+ # // The identifier field of resources often have different field behavior
143
+ # // depending on the request it is embedded in (e.g. for Create methods name
144
+ # // is optional and unused, while for Update methods it is required). Instead
145
+ # // of method-specific annotations, only `IDENTIFIER` is required.
146
+ # IDENTIFIER = 8;
133
147
  # }
@@ -17,7 +17,7 @@
17
17
  module Google
18
18
  module CommonProtos
19
19
  module Types
20
- VERSION = "1.8.0".freeze
20
+ VERSION = "1.9.0".freeze
21
21
  end
22
22
  end
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: googleapis-common-protos-types
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.9.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-08-07 00:00:00.000000000 Z
11
+ date: 2023-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -111,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
111
  - !ruby/object:Gem::Version
112
112
  version: '0'
113
113
  requirements: []
114
- rubygems_version: 3.4.2
114
+ rubygems_version: 3.4.19
115
115
  signing_key:
116
116
  specification_version: 4
117
117
  summary: Common protocol buffer types used in Google APIs