google-apis-apphub_v1alpha 0.11.0 → 0.13.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 +9 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/apphub_v1alpha/classes.rb +45 -0
- data/lib/google/apis/apphub_v1alpha/gem_version.rb +3 -3
- data/lib/google/apis/apphub_v1alpha/representations.rb +17 -0
- data/lib/google/apis/apphub_v1alpha/service.rb +31 -0
- 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: 516c9e3e120eff3c7bf3ed5c64cda20ffca76193b37825e3e1bfd2e2922c7ae3
|
4
|
+
data.tar.gz: 3c92248ad268bd92534e4b951b34f91d64bde71b1c1cc789a2ec59ed5a2c6dd7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75e23db478a7e49254b9a03370e683722bbab4fb63bbe15e9ea3e335849b5e0d62d31c1f1db2a223e2b1064cca20e0ef0fc20d4729e5c083438ca37b758baee4
|
7
|
+
data.tar.gz: 2225812746c93d1d834f54d9b72e9c712a7df522de3fb1b43bf9a84fe4755c78d49313f76b257b9504401466a03d43a28f9734f58c61b95a5c32d894534ac7df
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-apphub_v1alpha
|
2
2
|
|
3
|
+
### v0.13.0 (2025-06-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250416
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
8
|
+
### v0.12.0 (2025-05-04)
|
9
|
+
|
10
|
+
* Regenerated using generator version 0.17.0
|
11
|
+
|
3
12
|
### v0.11.0 (2025-04-20)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250414
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/app-hub/docs/) may provide
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -1132,6 +1132,51 @@ module Google
|
|
1132
1132
|
end
|
1133
1133
|
end
|
1134
1134
|
|
1135
|
+
# Perimeter is a boundary that describes application management on a `
|
1136
|
+
# perimeter_node` (currently limited to an app-enabled folder).
|
1137
|
+
class Perimeter
|
1138
|
+
include Google::Apis::Core::Hashable
|
1139
|
+
|
1140
|
+
# Output only. Create time.
|
1141
|
+
# Corresponds to the JSON property `createTime`
|
1142
|
+
# @return [String]
|
1143
|
+
attr_accessor :create_time
|
1144
|
+
|
1145
|
+
# Identifier. Name of the Perimeter resource.
|
1146
|
+
# Corresponds to the JSON property `name`
|
1147
|
+
# @return [String]
|
1148
|
+
attr_accessor :name
|
1149
|
+
|
1150
|
+
# Immutable. Cloud Resource Manager node that determines the perimeter. Only `
|
1151
|
+
# folders/`folder_number`` is currently supported.
|
1152
|
+
# Corresponds to the JSON property `perimeterNode`
|
1153
|
+
# @return [String]
|
1154
|
+
attr_accessor :perimeter_node
|
1155
|
+
|
1156
|
+
# Output only. Perimeter state.
|
1157
|
+
# Corresponds to the JSON property `state`
|
1158
|
+
# @return [String]
|
1159
|
+
attr_accessor :state
|
1160
|
+
|
1161
|
+
# Output only. Update time.
|
1162
|
+
# Corresponds to the JSON property `updateTime`
|
1163
|
+
# @return [String]
|
1164
|
+
attr_accessor :update_time
|
1165
|
+
|
1166
|
+
def initialize(**args)
|
1167
|
+
update!(**args)
|
1168
|
+
end
|
1169
|
+
|
1170
|
+
# Update properties of this object
|
1171
|
+
def update!(**args)
|
1172
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1173
|
+
@name = args[:name] if args.key?(:name)
|
1174
|
+
@perimeter_node = args[:perimeter_node] if args.key?(:perimeter_node)
|
1175
|
+
@state = args[:state] if args.key?(:state)
|
1176
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
1177
|
+
end
|
1178
|
+
end
|
1179
|
+
|
1135
1180
|
# An Identity and Access Management (IAM) policy, which specifies access
|
1136
1181
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
1137
1182
|
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ApphubV1alpha
|
18
18
|
# Version of the google-apis-apphub_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.13.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250416"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -214,6 +214,12 @@ module Google
|
|
214
214
|
include Google::Apis::Core::JsonObjectSupport
|
215
215
|
end
|
216
216
|
|
217
|
+
class Perimeter
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
+
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
221
|
+
end
|
222
|
+
|
217
223
|
class Policy
|
218
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
225
|
|
@@ -600,6 +606,17 @@ module Google
|
|
600
606
|
end
|
601
607
|
end
|
602
608
|
|
609
|
+
class Perimeter
|
610
|
+
# @private
|
611
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
612
|
+
property :create_time, as: 'createTime'
|
613
|
+
property :name, as: 'name'
|
614
|
+
property :perimeter_node, as: 'perimeterNode'
|
615
|
+
property :state, as: 'state'
|
616
|
+
property :update_time, as: 'updateTime'
|
617
|
+
end
|
618
|
+
end
|
619
|
+
|
603
620
|
class Policy
|
604
621
|
# @private
|
605
622
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -118,6 +118,37 @@ module Google
|
|
118
118
|
execute_or_queue_command(command, &block)
|
119
119
|
end
|
120
120
|
|
121
|
+
# Gets a perimeter
|
122
|
+
# @param [String] name
|
123
|
+
# Required. Fully qualified name of the Perimeter Expected format: `projects/`
|
124
|
+
# project`/locations/`location`/perimeter`.
|
125
|
+
# @param [String] fields
|
126
|
+
# Selector specifying which fields to include in a partial response.
|
127
|
+
# @param [String] quota_user
|
128
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
129
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
130
|
+
# @param [Google::Apis::RequestOptions] options
|
131
|
+
# Request-specific options
|
132
|
+
#
|
133
|
+
# @yield [result, err] Result & error if block supplied
|
134
|
+
# @yieldparam result [Google::Apis::ApphubV1alpha::Perimeter] parsed result object
|
135
|
+
# @yieldparam err [StandardError] error object if request failed
|
136
|
+
#
|
137
|
+
# @return [Google::Apis::ApphubV1alpha::Perimeter]
|
138
|
+
#
|
139
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
140
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
141
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
142
|
+
def get_project_location_perimeter(name, fields: nil, quota_user: nil, options: nil, &block)
|
143
|
+
command = make_simple_command(:get, 'v1alpha/{+name}', options)
|
144
|
+
command.response_representation = Google::Apis::ApphubV1alpha::Perimeter::Representation
|
145
|
+
command.response_class = Google::Apis::ApphubV1alpha::Perimeter
|
146
|
+
command.params['name'] = name unless name.nil?
|
147
|
+
command.query['fields'] = fields unless fields.nil?
|
148
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
149
|
+
execute_or_queue_command(command, &block)
|
150
|
+
end
|
151
|
+
|
121
152
|
# Lists information about the supported locations for this service.
|
122
153
|
# @param [String] name
|
123
154
|
# The resource that owns the locations collection, if applicable.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-apphub_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apphub_v1alpha/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1alpha/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1alpha/v0.13.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apphub_v1alpha
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
69
|
+
version: '3.1'
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for App Hub API V1alpha
|
79
79
|
test_files: []
|