google-apis-appengine_v1 0.52.0 → 0.53.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: 15cbcc123472f4fd1cf41e4f9a007cb016188d5a7ff970a3d4787e87ecd514c0
|
4
|
+
data.tar.gz: 6486fa892271713251cdce2cc3a57fbece8629c79e38816c8c9c7ae59121a027
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e46e0b17d59d72ec113c404498a73ad4b418aa87fa65503d07e0e3e9a6eff294ed3f7ae90f29fc73913a56063a24cfab1143904a7fbfa72cd16256baf40e30a8
|
7
|
+
data.tar.gz: b1f73097d01ba71ede0874bf65300184ca0b4b90c02f7d0890cacdfe2a26ed0fec499718027e06b57fc2775b2d9b9a85ff44978cc8e19b1f927516533240cfe7
|
data/CHANGELOG.md
CHANGED
@@ -1157,6 +1157,34 @@ module Google
|
|
1157
1157
|
end
|
1158
1158
|
end
|
1159
1159
|
|
1160
|
+
# For use only by GCE. GceTag is a wrapper around the GCE administrative tag
|
1161
|
+
# with parent info.
|
1162
|
+
class GceTag
|
1163
|
+
include Google::Apis::Core::Hashable
|
1164
|
+
|
1165
|
+
# The parents(s) of the tag. Eg. projects/123, folders/456 It usually contains
|
1166
|
+
# only one parent. But, in some corner cases, it can contain multiple parents.
|
1167
|
+
# Currently, organizations are not supported.
|
1168
|
+
# Corresponds to the JSON property `parent`
|
1169
|
+
# @return [Array<String>]
|
1170
|
+
attr_accessor :parent
|
1171
|
+
|
1172
|
+
# The administrative_tag name.
|
1173
|
+
# Corresponds to the JSON property `tag`
|
1174
|
+
# @return [String]
|
1175
|
+
attr_accessor :tag
|
1176
|
+
|
1177
|
+
def initialize(**args)
|
1178
|
+
update!(**args)
|
1179
|
+
end
|
1180
|
+
|
1181
|
+
# Update properties of this object
|
1182
|
+
def update!(**args)
|
1183
|
+
@parent = args[:parent] if args.key?(:parent)
|
1184
|
+
@tag = args[:tag] if args.key?(:tag)
|
1185
|
+
end
|
1186
|
+
end
|
1187
|
+
|
1160
1188
|
# Metadata for the given google.cloud.location.Location.
|
1161
1189
|
class GoogleAppengineV1betaLocationMetadata
|
1162
1190
|
include Google::Apis::Core::Hashable
|
@@ -2336,6 +2364,12 @@ module Google
|
|
2336
2364
|
# @return [String]
|
2337
2365
|
attr_accessor :consumer_project_state
|
2338
2366
|
|
2367
|
+
# The GCE tags associated with the consumer project and those inherited due to
|
2368
|
+
# their ancestry, if any. Not supported by CCFE.
|
2369
|
+
# Corresponds to the JSON property `gceTag`
|
2370
|
+
# @return [Array<Google::Apis::AppengineV1::GceTag>]
|
2371
|
+
attr_accessor :gce_tag
|
2372
|
+
|
2339
2373
|
# The service account authorized to operate on the consumer project. Note: CCFE
|
2340
2374
|
# only propagates P4SA with default tag to CLH.
|
2341
2375
|
# Corresponds to the JSON property `p4ServiceAccount`
|
@@ -2371,6 +2405,7 @@ module Google
|
|
2371
2405
|
@consumer_project_id = args[:consumer_project_id] if args.key?(:consumer_project_id)
|
2372
2406
|
@consumer_project_number = args[:consumer_project_number] if args.key?(:consumer_project_number)
|
2373
2407
|
@consumer_project_state = args[:consumer_project_state] if args.key?(:consumer_project_state)
|
2408
|
+
@gce_tag = args[:gce_tag] if args.key?(:gce_tag)
|
2374
2409
|
@p4_service_account = args[:p4_service_account] if args.key?(:p4_service_account)
|
2375
2410
|
@producer_project_id = args[:producer_project_id] if args.key?(:producer_project_id)
|
2376
2411
|
@producer_project_number = args[:producer_project_number] if args.key?(:producer_project_number)
|
@@ -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.53.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240906"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -202,6 +202,12 @@ module Google
|
|
202
202
|
include Google::Apis::Core::JsonObjectSupport
|
203
203
|
end
|
204
204
|
|
205
|
+
class GceTag
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
205
211
|
class GoogleAppengineV1betaLocationMetadata
|
206
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
213
|
|
@@ -794,6 +800,14 @@ module Google
|
|
794
800
|
end
|
795
801
|
end
|
796
802
|
|
803
|
+
class GceTag
|
804
|
+
# @private
|
805
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
806
|
+
collection :parent, as: 'parent'
|
807
|
+
property :tag, as: 'tag'
|
808
|
+
end
|
809
|
+
end
|
810
|
+
|
797
811
|
class GoogleAppengineV1betaLocationMetadata
|
798
812
|
# @private
|
799
813
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1099,6 +1113,8 @@ module Google
|
|
1099
1113
|
property :consumer_project_id, as: 'consumerProjectId'
|
1100
1114
|
property :consumer_project_number, :numeric_string => true, as: 'consumerProjectNumber'
|
1101
1115
|
property :consumer_project_state, as: 'consumerProjectState'
|
1116
|
+
collection :gce_tag, as: 'gceTag', class: Google::Apis::AppengineV1::GceTag, decorator: Google::Apis::AppengineV1::GceTag::Representation
|
1117
|
+
|
1102
1118
|
property :p4_service_account, as: 'p4ServiceAccount'
|
1103
1119
|
property :producer_project_id, as: 'producerProjectId'
|
1104
1120
|
property :producer_project_number, :numeric_string => true, as: 'producerProjectNumber'
|
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.53.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: 2024-
|
11
|
+
date: 2024-09-15 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/main/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.53.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|