google-apis-servicedirectory_v1 0.24.0 → 0.25.0

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: 349de99dfe242078d55adf6bb8ab3bc1cda64f74aa1fc65ce5ef375827f2b3af
4
- data.tar.gz: 7ee70897f9c5e8830f138e84759cdfff2b17a5904c58e3dd6ce19f70aedffd23
3
+ metadata.gz: 47d0a530bffa074af9258bc773445e44b83922460dd60053029e760cb06d1f47
4
+ data.tar.gz: 5d91c28ee420ec1743c90b382536b19f0e635e47bbfeec1ea4e052427277701f
5
5
  SHA512:
6
- metadata.gz: 416d59d3cf3a0dbbe3e652554bb2d8e3b489ca09298b51e2b84794e835d1ce7c897fb71859ae73f76d1136d5341db62bdcb0f48f457b640f04de954527c04887
7
- data.tar.gz: b2d10ce34034b539f7ef03294288fec35f98e7eab374b3e98eba1252589381e8125bba31f443b9df54771343c6ea3294253cdb777d411216a39f0bb6010534c1
6
+ metadata.gz: b706b6cc7514ecc28851c35eeacfc685fd81ecb5f420a1713e69f69e3e57f65501acbb8d5ad763fab2f0aef5e1823720a819afcf8e238c1bdbe49a79d1b215dd
7
+ data.tar.gz: a0084db91076082969d78b0410139d2ef033fd0e3e2d7a9b869dcb49056f2b999f88d2f3223836fb5480113a98057f8191ede5253eb632e471c3c7bca83e76a3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-servicedirectory_v1
2
2
 
3
+ ### v0.25.0 (2022-10-27)
4
+
5
+ * Regenerated from discovery document revision 20220930
6
+ * Regenerated using generator version 0.11.0
7
+
3
8
  ### v0.24.0 (2022-09-23)
4
9
 
5
10
  * Regenerated using generator version 0.10.0
@@ -163,6 +163,12 @@ module Google
163
163
  # @return [Fixnum]
164
164
  attr_accessor :port
165
165
 
166
+ # Output only. The globally unique identifier of the endpoint in the UUID4
167
+ # format.
168
+ # Corresponds to the JSON property `uid`
169
+ # @return [String]
170
+ attr_accessor :uid
171
+
166
172
  def initialize(**args)
167
173
  update!(**args)
168
174
  end
@@ -174,6 +180,7 @@ module Google
174
180
  @name = args[:name] if args.key?(:name)
175
181
  @network = args[:network] if args.key?(:network)
176
182
  @port = args[:port] if args.key?(:port)
183
+ @uid = args[:uid] if args.key?(:uid)
177
184
  end
178
185
  end
179
186
 
@@ -446,6 +453,12 @@ module Google
446
453
  # @return [String]
447
454
  attr_accessor :name
448
455
 
456
+ # Output only. The globally unique identifier of the namespace in the UUID4
457
+ # format.
458
+ # Corresponds to the JSON property `uid`
459
+ # @return [String]
460
+ attr_accessor :uid
461
+
449
462
  def initialize(**args)
450
463
  update!(**args)
451
464
  end
@@ -454,6 +467,7 @@ module Google
454
467
  def update!(**args)
455
468
  @labels = args[:labels] if args.key?(:labels)
456
469
  @name = args[:name] if args.key?(:name)
470
+ @uid = args[:uid] if args.key?(:uid)
457
471
  end
458
472
  end
459
473
 
@@ -649,6 +663,11 @@ module Google
649
663
  # @return [String]
650
664
  attr_accessor :name
651
665
 
666
+ # Output only. The globally unique identifier of the service in the UUID4 format.
667
+ # Corresponds to the JSON property `uid`
668
+ # @return [String]
669
+ attr_accessor :uid
670
+
652
671
  def initialize(**args)
653
672
  update!(**args)
654
673
  end
@@ -658,6 +677,7 @@ module Google
658
677
  @annotations = args[:annotations] if args.key?(:annotations)
659
678
  @endpoints = args[:endpoints] if args.key?(:endpoints)
660
679
  @name = args[:name] if args.key?(:name)
680
+ @uid = args[:uid] if args.key?(:uid)
661
681
  end
662
682
  end
663
683
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicedirectoryV1
18
18
  # Version of the google-apis-servicedirectory_v1 gem
19
- GEM_VERSION = "0.24.0"
19
+ GEM_VERSION = "0.25.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220824"
25
+ REVISION = "20220930"
26
26
  end
27
27
  end
28
28
  end
@@ -160,6 +160,7 @@ module Google
160
160
  property :name, as: 'name'
161
161
  property :network, as: 'network'
162
162
  property :port, as: 'port'
163
+ property :uid, as: 'uid'
163
164
  end
164
165
  end
165
166
 
@@ -240,6 +241,7 @@ module Google
240
241
  class Representation < Google::Apis::Core::JsonRepresentation
241
242
  hash :labels, as: 'labels'
242
243
  property :name, as: 'name'
244
+ property :uid, as: 'uid'
243
245
  end
244
246
  end
245
247
 
@@ -276,6 +278,7 @@ module Google
276
278
  collection :endpoints, as: 'endpoints', class: Google::Apis::ServicedirectoryV1::Endpoint, decorator: Google::Apis::ServicedirectoryV1::Endpoint::Representation
277
279
 
278
280
  property :name, as: 'name'
281
+ property :uid, as: 'uid'
279
282
  end
280
283
  end
281
284
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicedirectory_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.25.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-09-26 00:00:00.000000000 Z
11
+ date: 2022-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.0
19
+ version: 0.9.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.0
29
+ version: 0.9.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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-servicedirectory_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicedirectory_v1/v0.24.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicedirectory_v1/v0.25.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicedirectory_v1
63
63
  post_install_message:
64
64
  rdoc_options: []