google-apis-servicedirectory_v1beta1 0.3.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 +4 -4
- data/CHANGELOG.md +22 -0
- data/lib/google/apis/servicedirectory_v1beta1.rb +1 -1
- data/lib/google/apis/servicedirectory_v1beta1/classes.rb +49 -1
- data/lib/google/apis/servicedirectory_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/servicedirectory_v1beta1/representations.rb +7 -0
- data/lib/google/apis/servicedirectory_v1beta1/service.rb +7 -3
- metadata +5 -5
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
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-servicedirectory_v1beta1
|
2
2
|
|
3
|
+
### v0.8.0 (2021-05-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210512
|
6
|
+
* Unspecified changes
|
7
|
+
|
8
|
+
### v0.7.0 (2021-05-01)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20210422
|
11
|
+
|
12
|
+
### v0.6.0 (2021-04-03)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20210324
|
15
|
+
|
16
|
+
### v0.5.0 (2021-03-21)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210310
|
19
|
+
* Regenerated using generator version 0.2.0
|
20
|
+
|
21
|
+
### v0.4.0 (2021-03-04)
|
22
|
+
|
23
|
+
* Unspecified changes
|
24
|
+
|
3
25
|
### v0.3.0 (2021-02-15)
|
4
26
|
|
5
27
|
* Regenerated from discovery document revision 20210203
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# This is NOT the gem version.
|
31
31
|
VERSION = 'V1beta1'
|
32
32
|
|
33
|
-
#
|
33
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
34
34
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
35
35
|
end
|
36
36
|
end
|
@@ -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
|
@@ -148,11 +153,25 @@ module Google
|
|
148
153
|
# @return [String]
|
149
154
|
attr_accessor :name
|
150
155
|
|
156
|
+
# Immutable. The Google Compute Engine network (VPC) of the endpoint in the
|
157
|
+
# format `projects//locations/global/networks/*`. The project must be specified
|
158
|
+
# by project number (project id is rejected). Incorrectly formatted networks are
|
159
|
+
# rejected, but no other validation is performed on this field (ex. network or
|
160
|
+
# project existence, reachability, or permissions).
|
161
|
+
# Corresponds to the JSON property `network`
|
162
|
+
# @return [String]
|
163
|
+
attr_accessor :network
|
164
|
+
|
151
165
|
# Optional. Service Directory rejects values outside of `[0, 65535]`.
|
152
166
|
# Corresponds to the JSON property `port`
|
153
167
|
# @return [Fixnum]
|
154
168
|
attr_accessor :port
|
155
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
|
+
|
156
175
|
def initialize(**args)
|
157
176
|
update!(**args)
|
158
177
|
end
|
@@ -160,9 +179,12 @@ module Google
|
|
160
179
|
# Update properties of this object
|
161
180
|
def update!(**args)
|
162
181
|
@address = args[:address] if args.key?(:address)
|
182
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
163
183
|
@metadata = args[:metadata] if args.key?(:metadata)
|
164
184
|
@name = args[:name] if args.key?(:name)
|
185
|
+
@network = args[:network] if args.key?(:network)
|
165
186
|
@port = args[:port] if args.key?(:port)
|
187
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
166
188
|
end
|
167
189
|
end
|
168
190
|
|
@@ -419,6 +441,11 @@ module Google
|
|
419
441
|
class Namespace
|
420
442
|
include Google::Apis::Core::Hashable
|
421
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
|
+
|
422
449
|
# Optional. Resource labels associated with this namespace. No more than 64 user
|
423
450
|
# labels can be associated with a given resource. Label keys and values can be
|
424
451
|
# no longer than 63 characters.
|
@@ -432,14 +459,21 @@ module Google
|
|
432
459
|
# @return [String]
|
433
460
|
attr_accessor :name
|
434
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
|
+
|
435
467
|
def initialize(**args)
|
436
468
|
update!(**args)
|
437
469
|
end
|
438
470
|
|
439
471
|
# Update properties of this object
|
440
472
|
def update!(**args)
|
473
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
441
474
|
@labels = args[:labels] if args.key?(:labels)
|
442
475
|
@name = args[:name] if args.key?(:name)
|
476
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
443
477
|
end
|
444
478
|
end
|
445
479
|
|
@@ -598,6 +632,11 @@ module Google
|
|
598
632
|
class Service
|
599
633
|
include Google::Apis::Core::Hashable
|
600
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
|
+
|
601
640
|
# Output only. Endpoints associated with this service. Returned on LookupService.
|
602
641
|
# ResolveService. Control plane clients should use RegistrationService.
|
603
642
|
# ListEndpoints.
|
@@ -606,7 +645,7 @@ module Google
|
|
606
645
|
attr_accessor :endpoints
|
607
646
|
|
608
647
|
# Optional. Metadata for the service. This data can be consumed by service
|
609
|
-
# clients. Restrictions: * The entire metadata dictionary may contain up to
|
648
|
+
# clients. Restrictions: * The entire metadata dictionary may contain up to 2000
|
610
649
|
# characters, spread accoss all key-value pairs. Metadata that goes beyond this
|
611
650
|
# limit are rejected * Valid metadata keys have two segments: an optional prefix
|
612
651
|
# and name, separated by a slash (/). The name segment is required and must be
|
@@ -631,15 +670,24 @@ module Google
|
|
631
670
|
# @return [String]
|
632
671
|
attr_accessor :name
|
633
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
|
+
|
634
680
|
def initialize(**args)
|
635
681
|
update!(**args)
|
636
682
|
end
|
637
683
|
|
638
684
|
# Update properties of this object
|
639
685
|
def update!(**args)
|
686
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
640
687
|
@endpoints = args[:endpoints] if args.key?(:endpoints)
|
641
688
|
@metadata = args[:metadata] if args.key?(:metadata)
|
642
689
|
@name = args[:name] if args.key?(:name)
|
690
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
643
691
|
end
|
644
692
|
end
|
645
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
|
-
GENERATOR_VERSION = "0.
|
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,9 +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'
|
162
|
+
property :network, as: 'network'
|
161
163
|
property :port, as: 'port'
|
164
|
+
property :update_time, as: 'updateTime'
|
162
165
|
end
|
163
166
|
end
|
164
167
|
|
@@ -237,8 +240,10 @@ module Google
|
|
237
240
|
class Namespace
|
238
241
|
# @private
|
239
242
|
class Representation < Google::Apis::Core::JsonRepresentation
|
243
|
+
property :create_time, as: 'createTime'
|
240
244
|
hash :labels, as: 'labels'
|
241
245
|
property :name, as: 'name'
|
246
|
+
property :update_time, as: 'updateTime'
|
242
247
|
end
|
243
248
|
end
|
244
249
|
|
@@ -271,10 +276,12 @@ module Google
|
|
271
276
|
class Service
|
272
277
|
# @private
|
273
278
|
class Representation < Google::Apis::Core::JsonRepresentation
|
279
|
+
property :create_time, as: 'createTime'
|
274
280
|
collection :endpoints, as: 'endpoints', class: Google::Apis::ServicedirectoryV1beta1::Endpoint, decorator: Google::Apis::ServicedirectoryV1beta1::Endpoint::Representation
|
275
281
|
|
276
282
|
hash :metadata, as: 'metadata'
|
277
283
|
property :name, as: 'name'
|
284
|
+
property :update_time, as: 'updateTime'
|
278
285
|
end
|
279
286
|
end
|
280
287
|
|
@@ -84,11 +84,15 @@ module Google
|
|
84
84
|
# @param [String] name
|
85
85
|
# The resource that owns the locations collection, if applicable.
|
86
86
|
# @param [String] filter
|
87
|
-
#
|
87
|
+
# A filter to narrow down results to a preferred subset. The filtering language
|
88
|
+
# accepts strings like "displayName=tokyo", and is documented in more detail in [
|
89
|
+
# AIP-160](https://google.aip.dev/160).
|
88
90
|
# @param [Fixnum] page_size
|
89
|
-
# The
|
91
|
+
# The maximum number of results to return. If not set, the service selects a
|
92
|
+
# default.
|
90
93
|
# @param [String] page_token
|
91
|
-
#
|
94
|
+
# A page token received from the `next_page_token` field in the response. Send
|
95
|
+
# that page token to receive the subsequent page.
|
92
96
|
# @param [String] fields
|
93
97
|
# Selector specifying which fields to include in a partial response.
|
94
98
|
# @param [String] quota_user
|
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-
|
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: []
|
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
62
|
requirements:
|
63
63
|
- - ">="
|
64
64
|
- !ruby/object:Gem::Version
|
65
|
-
version: '2.
|
65
|
+
version: '2.5'
|
66
66
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
68
|
- - ">="
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
72
|
+
rubygems_version: 3.2.17
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Service Directory API V1beta1
|