google-apis-servicedirectory_v1beta1 0.7.0 → 0.8.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e790c8355d39ed34966ebbc47c3d955065532d6220ad1b4938ba0e9b5e319d58
|
4
|
+
data.tar.gz: c58ab3600527396a3fad7947fe283aa9141e0840f69ce235cac0f51e05f64749
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d220aebe53b1de9a5616e71a39b4adcd920cf1595348f4d4dd24aedeb3def55f7d553423cf29bfd35a3bc88159354399942ffd8df9ea7bc5f67ee6df964e47db
|
7
|
+
data.tar.gz: 47e4007ae56b11eada7dab20bce18598775006850b05c88c002f2565db17b1edb731ab5e2f97bfb8393566d389d24ea3597eea9cfe20fa7bf0d38d94090ccf7e
|
data/CHANGELOG.md
CHANGED
@@ -122,6 +122,11 @@ module Google
|
|
122
122
|
# @return [String]
|
123
123
|
attr_accessor :address
|
124
124
|
|
125
|
+
# Output only. The timestamp when the endpoint was created.
|
126
|
+
# Corresponds to the JSON property `createTime`
|
127
|
+
# @return [String]
|
128
|
+
attr_accessor :create_time
|
129
|
+
|
125
130
|
# Optional. Metadata for the endpoint. This data can be consumed by service
|
126
131
|
# clients. Restrictions: * The entire metadata dictionary may contain up to 512
|
127
132
|
# characters, spread accoss all key-value pairs. Metadata that goes beyond this
|
@@ -162,6 +167,11 @@ module Google
|
|
162
167
|
# @return [Fixnum]
|
163
168
|
attr_accessor :port
|
164
169
|
|
170
|
+
# Output only. The timestamp when the endpoint was last updated.
|
171
|
+
# Corresponds to the JSON property `updateTime`
|
172
|
+
# @return [String]
|
173
|
+
attr_accessor :update_time
|
174
|
+
|
165
175
|
def initialize(**args)
|
166
176
|
update!(**args)
|
167
177
|
end
|
@@ -169,10 +179,12 @@ module Google
|
|
169
179
|
# Update properties of this object
|
170
180
|
def update!(**args)
|
171
181
|
@address = args[:address] if args.key?(:address)
|
182
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
172
183
|
@metadata = args[:metadata] if args.key?(:metadata)
|
173
184
|
@name = args[:name] if args.key?(:name)
|
174
185
|
@network = args[:network] if args.key?(:network)
|
175
186
|
@port = args[:port] if args.key?(:port)
|
187
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
176
188
|
end
|
177
189
|
end
|
178
190
|
|
@@ -429,6 +441,11 @@ module Google
|
|
429
441
|
class Namespace
|
430
442
|
include Google::Apis::Core::Hashable
|
431
443
|
|
444
|
+
# Output only. The timestamp when the namespace was created.
|
445
|
+
# Corresponds to the JSON property `createTime`
|
446
|
+
# @return [String]
|
447
|
+
attr_accessor :create_time
|
448
|
+
|
432
449
|
# Optional. Resource labels associated with this namespace. No more than 64 user
|
433
450
|
# labels can be associated with a given resource. Label keys and values can be
|
434
451
|
# no longer than 63 characters.
|
@@ -442,14 +459,21 @@ module Google
|
|
442
459
|
# @return [String]
|
443
460
|
attr_accessor :name
|
444
461
|
|
462
|
+
# Output only. The timestamp when the namespace was last updated.
|
463
|
+
# Corresponds to the JSON property `updateTime`
|
464
|
+
# @return [String]
|
465
|
+
attr_accessor :update_time
|
466
|
+
|
445
467
|
def initialize(**args)
|
446
468
|
update!(**args)
|
447
469
|
end
|
448
470
|
|
449
471
|
# Update properties of this object
|
450
472
|
def update!(**args)
|
473
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
451
474
|
@labels = args[:labels] if args.key?(:labels)
|
452
475
|
@name = args[:name] if args.key?(:name)
|
476
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
453
477
|
end
|
454
478
|
end
|
455
479
|
|
@@ -608,6 +632,11 @@ module Google
|
|
608
632
|
class Service
|
609
633
|
include Google::Apis::Core::Hashable
|
610
634
|
|
635
|
+
# Output only. The timestamp when the service was created.
|
636
|
+
# Corresponds to the JSON property `createTime`
|
637
|
+
# @return [String]
|
638
|
+
attr_accessor :create_time
|
639
|
+
|
611
640
|
# Output only. Endpoints associated with this service. Returned on LookupService.
|
612
641
|
# ResolveService. Control plane clients should use RegistrationService.
|
613
642
|
# ListEndpoints.
|
@@ -641,15 +670,24 @@ module Google
|
|
641
670
|
# @return [String]
|
642
671
|
attr_accessor :name
|
643
672
|
|
673
|
+
# Output only. The timestamp when the service was last updated. Note: endpoints
|
674
|
+
# being created/deleted/updated within the service are not considered service
|
675
|
+
# updates for the purpose of this timestamp.
|
676
|
+
# Corresponds to the JSON property `updateTime`
|
677
|
+
# @return [String]
|
678
|
+
attr_accessor :update_time
|
679
|
+
|
644
680
|
def initialize(**args)
|
645
681
|
update!(**args)
|
646
682
|
end
|
647
683
|
|
648
684
|
# Update properties of this object
|
649
685
|
def update!(**args)
|
686
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
650
687
|
@endpoints = args[:endpoints] if args.key?(:endpoints)
|
651
688
|
@metadata = args[:metadata] if args.key?(:metadata)
|
652
689
|
@name = args[:name] if args.key?(:name)
|
690
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
653
691
|
end
|
654
692
|
end
|
655
693
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicedirectoryV1beta1
|
18
18
|
# Version of the google-apis-servicedirectory_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210512"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -156,10 +156,12 @@ module Google
|
|
156
156
|
# @private
|
157
157
|
class Representation < Google::Apis::Core::JsonRepresentation
|
158
158
|
property :address, as: 'address'
|
159
|
+
property :create_time, as: 'createTime'
|
159
160
|
hash :metadata, as: 'metadata'
|
160
161
|
property :name, as: 'name'
|
161
162
|
property :network, as: 'network'
|
162
163
|
property :port, as: 'port'
|
164
|
+
property :update_time, as: 'updateTime'
|
163
165
|
end
|
164
166
|
end
|
165
167
|
|
@@ -238,8 +240,10 @@ module Google
|
|
238
240
|
class Namespace
|
239
241
|
# @private
|
240
242
|
class Representation < Google::Apis::Core::JsonRepresentation
|
243
|
+
property :create_time, as: 'createTime'
|
241
244
|
hash :labels, as: 'labels'
|
242
245
|
property :name, as: 'name'
|
246
|
+
property :update_time, as: 'updateTime'
|
243
247
|
end
|
244
248
|
end
|
245
249
|
|
@@ -272,10 +276,12 @@ module Google
|
|
272
276
|
class Service
|
273
277
|
# @private
|
274
278
|
class Representation < Google::Apis::Core::JsonRepresentation
|
279
|
+
property :create_time, as: 'createTime'
|
275
280
|
collection :endpoints, as: 'endpoints', class: Google::Apis::ServicedirectoryV1beta1::Endpoint, decorator: Google::Apis::ServicedirectoryV1beta1::Endpoint::Representation
|
276
281
|
|
277
282
|
hash :metadata, as: 'metadata'
|
278
283
|
property :name, as: 'name'
|
284
|
+
property :update_time, as: 'updateTime'
|
279
285
|
end
|
280
286
|
end
|
281
287
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicedirectory_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.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: 2021-05-
|
11
|
+
date: 2021-05-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicedirectory_v1beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicedirectory_v1beta1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicedirectory_v1beta1/v0.8.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicedirectory_v1beta1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|