google-apis-appengine_v1 0.15.0 → 0.16.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: bd89abf6d642071bb84372111e38843e5562c37602b1007bbc5f1c6129f1d5d0
|
|
4
|
+
data.tar.gz: ed689cd5c0febce3659df9988b24491ef521042787be26c5d01fae166fb812f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9a61f16acf9fabf51b59610d9ef3fba745cae5a44ba0cad86e1487b365e3657c8ee06b83bae108d5836e369e6e0c1e56562757fcb33eae292c9fa4a2611b672
|
|
7
|
+
data.tar.gz: 223c71e54282b561e6691b6b9c84f29554a69ddcfc5d281ccb7f5b18bcafb2f7172fefe7573e03485914e010a11dd12004e5fc2fa7f3a518a9f9f8965e196a06
|
data/CHANGELOG.md
CHANGED
|
@@ -2473,6 +2473,20 @@ module Google
|
|
|
2473
2473
|
# @return [String]
|
|
2474
2474
|
attr_accessor :id
|
|
2475
2475
|
|
|
2476
|
+
# A set of labels to apply to this service. Labels are key/value pairs that
|
|
2477
|
+
# describe the service and all resources that belong to it (e.g., versions). The
|
|
2478
|
+
# labels can be used to search and group resources, and are propagated to the
|
|
2479
|
+
# usage and billing reports, enabling fine-grain analysis of costs. An example
|
|
2480
|
+
# of using labels is to tag resources belonging to different environments (e.g.,
|
|
2481
|
+
# "env=prod", "env=qa"). Label keys and values can be no longer than 63
|
|
2482
|
+
# characters, can only contain lowercase letters, numeric characters,
|
|
2483
|
+
# underscores, dashes, and international characters. Label keys must start with
|
|
2484
|
+
# a lowercase letter or an international character. Each service can have at
|
|
2485
|
+
# most 32 labels.
|
|
2486
|
+
# Corresponds to the JSON property `labels`
|
|
2487
|
+
# @return [Hash<String,String>]
|
|
2488
|
+
attr_accessor :labels
|
|
2489
|
+
|
|
2476
2490
|
# Full path to the Service resource in the API. Example: apps/myapp/services/
|
|
2477
2491
|
# default.@OutputOnly
|
|
2478
2492
|
# Corresponds to the JSON property `name`
|
|
@@ -2498,6 +2512,7 @@ module Google
|
|
|
2498
2512
|
# Update properties of this object
|
|
2499
2513
|
def update!(**args)
|
|
2500
2514
|
@id = args[:id] if args.key?(:id)
|
|
2515
|
+
@labels = args[:labels] if args.key?(:labels)
|
|
2501
2516
|
@name = args[:name] if args.key?(:name)
|
|
2502
2517
|
@network_settings = args[:network_settings] if args.key?(:network_settings)
|
|
2503
2518
|
@split = args[:split] if args.key?(:split)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AppengineV1
|
|
18
18
|
# Version of the google-apis-appengine_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.16.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210918"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1095,6 +1095,7 @@ module Google
|
|
|
1095
1095
|
# @private
|
|
1096
1096
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1097
1097
|
property :id, as: 'id'
|
|
1098
|
+
hash :labels, as: 'labels'
|
|
1098
1099
|
property :name, as: 'name'
|
|
1099
1100
|
property :network_settings, as: 'networkSettings', class: Google::Apis::AppengineV1::NetworkSettings, decorator: Google::Apis::AppengineV1::NetworkSettings::Representation
|
|
1100
1101
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-appengine_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.16.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-09-
|
|
11
|
+
date: 2021-09-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -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/master/generated/google-apis-appengine_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.16.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-appengine_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|