google-apis-networkmanagement_v1beta1 0.22.0 → 0.23.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: e25e43a1b1e2f3d28a64bf25b0b3426ae1c6f07e0fc176c7baa6ecc9d48259ea
|
4
|
+
data.tar.gz: 8b330ddb4ffaf2849cd739f7f4a8372156b28d2f1cd76633834dab9cc97d6b8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d190274d64e9075c614d45cd9f76881c0611d55e1923680c92ddf98bc9bad217251aaed9cb792aa018e0cf3463165abc67b6ff679f3ec4553e8ab208ccfacb01
|
7
|
+
data.tar.gz: cbb16dae306fdbc96d979dc6a5ccc41aefb6c9e01b43bf63217a7b99b0b6664a08db5d2ab17d6485f756c8e751ca680b64c4436418c88d9e89be36dcf5e88a60
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1beta1
|
2
2
|
|
3
|
+
### v0.23.0 (2022-08-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220812
|
6
|
+
* Regenerated using generator version 0.9.0
|
7
|
+
|
3
8
|
### v0.22.0 (2022-06-30)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.8.0
|
@@ -31,6 +31,13 @@ module Google
|
|
31
31
|
# @return [String]
|
32
32
|
attr_accessor :cause
|
33
33
|
|
34
|
+
# List of project IDs that the user has specified in the request but does not
|
35
|
+
# have permission to access network configs. Analysis is aborted in this case
|
36
|
+
# with the PERMISSION_DENIED cause.
|
37
|
+
# Corresponds to the JSON property `projectsMissingPermission`
|
38
|
+
# @return [Array<String>]
|
39
|
+
attr_accessor :projects_missing_permission
|
40
|
+
|
34
41
|
# URI of the resource that caused the abort.
|
35
42
|
# Corresponds to the JSON property `resourceUri`
|
36
43
|
# @return [String]
|
@@ -43,47 +50,11 @@ module Google
|
|
43
50
|
# Update properties of this object
|
44
51
|
def update!(**args)
|
45
52
|
@cause = args[:cause] if args.key?(:cause)
|
53
|
+
@projects_missing_permission = args[:projects_missing_permission] if args.key?(:projects_missing_permission)
|
46
54
|
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
47
55
|
end
|
48
56
|
end
|
49
57
|
|
50
|
-
# For display only. Metadata associated with an App Engine version.
|
51
|
-
class AppEngineVersionInfo
|
52
|
-
include Google::Apis::Core::Hashable
|
53
|
-
|
54
|
-
# Name of an App Engine version.
|
55
|
-
# Corresponds to the JSON property `displayName`
|
56
|
-
# @return [String]
|
57
|
-
attr_accessor :display_name
|
58
|
-
|
59
|
-
# App Engine execution environment for a version.
|
60
|
-
# Corresponds to the JSON property `environment`
|
61
|
-
# @return [String]
|
62
|
-
attr_accessor :environment
|
63
|
-
|
64
|
-
# Runtime of the App Engine version.
|
65
|
-
# Corresponds to the JSON property `runtime`
|
66
|
-
# @return [String]
|
67
|
-
attr_accessor :runtime
|
68
|
-
|
69
|
-
# URI of an App Engine version.
|
70
|
-
# Corresponds to the JSON property `uri`
|
71
|
-
# @return [String]
|
72
|
-
attr_accessor :uri
|
73
|
-
|
74
|
-
def initialize(**args)
|
75
|
-
update!(**args)
|
76
|
-
end
|
77
|
-
|
78
|
-
# Update properties of this object
|
79
|
-
def update!(**args)
|
80
|
-
@display_name = args[:display_name] if args.key?(:display_name)
|
81
|
-
@environment = args[:environment] if args.key?(:environment)
|
82
|
-
@runtime = args[:runtime] if args.key?(:runtime)
|
83
|
-
@uri = args[:uri] if args.key?(:uri)
|
84
|
-
end
|
85
|
-
end
|
86
|
-
|
87
58
|
# Specifies the audit configuration for a service. The configuration determines
|
88
59
|
# which permission types are logged, and what identities, if any, are exempted
|
89
60
|
# from logging. An AuditConfig must have one or more AuditLogConfigs. If there
|
@@ -185,25 +156,28 @@ module Google
|
|
185
156
|
# anyone who is authenticated with a Google account or a service account. * `
|
186
157
|
# user:`emailid``: An email address that represents a specific Google account.
|
187
158
|
# For example, `alice@example.com` . * `serviceAccount:`emailid``: An email
|
188
|
-
# address that represents a service account. For example, `my-other-app@
|
189
|
-
# gserviceaccount.com`. * `
|
190
|
-
#
|
191
|
-
#
|
192
|
-
#
|
193
|
-
#
|
194
|
-
#
|
195
|
-
#
|
196
|
-
#
|
197
|
-
#
|
198
|
-
#
|
199
|
-
# emailid
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
203
|
-
#
|
204
|
-
#
|
205
|
-
#
|
206
|
-
#
|
159
|
+
# address that represents a Google service account. For example, `my-other-app@
|
160
|
+
# appspot.gserviceaccount.com`. * `serviceAccount:`projectid`.svc.id.goog[`
|
161
|
+
# namespace`/`kubernetes-sa`]`: An identifier for a [Kubernetes service account](
|
162
|
+
# https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-
|
163
|
+
# accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`
|
164
|
+
# . * `group:`emailid``: An email address that represents a Google group. For
|
165
|
+
# example, `admins@example.com`. * `deleted:user:`emailid`?uid=`uniqueid``: An
|
166
|
+
# email address (plus unique identifier) representing a user that has been
|
167
|
+
# recently deleted. For example, `alice@example.com?uid=123456789012345678901`.
|
168
|
+
# If the user is recovered, this value reverts to `user:`emailid`` and the
|
169
|
+
# recovered user retains the role in the binding. * `deleted:serviceAccount:`
|
170
|
+
# emailid`?uid=`uniqueid``: An email address (plus unique identifier)
|
171
|
+
# representing a service account that has been recently deleted. For example, `
|
172
|
+
# my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the
|
173
|
+
# service account is undeleted, this value reverts to `serviceAccount:`emailid``
|
174
|
+
# and the undeleted service account retains the role in the binding. * `deleted:
|
175
|
+
# group:`emailid`?uid=`uniqueid``: An email address (plus unique identifier)
|
176
|
+
# representing a Google group that has been recently deleted. For example, `
|
177
|
+
# admins@example.com?uid=123456789012345678901`. If the group is recovered, this
|
178
|
+
# value reverts to `group:`emailid`` and the recovered group retains the role in
|
179
|
+
# the binding. * `domain:`domain``: The G Suite domain (primary) that represents
|
180
|
+
# all the users of that domain. For example, `google.com` or `example.com`.
|
207
181
|
# Corresponds to the JSON property `members`
|
208
182
|
# @return [Array<String>]
|
209
183
|
attr_accessor :members
|
@@ -1780,11 +1754,6 @@ module Google
|
|
1780
1754
|
# @return [Google::Apis::NetworkmanagementV1beta1::AbortInfo]
|
1781
1755
|
attr_accessor :abort
|
1782
1756
|
|
1783
|
-
# For display only. Metadata associated with an App Engine version.
|
1784
|
-
# Corresponds to the JSON property `appEngineVersion`
|
1785
|
-
# @return [Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo]
|
1786
|
-
attr_accessor :app_engine_version
|
1787
|
-
|
1788
1757
|
# This is a step that leads to the final state Drop.
|
1789
1758
|
# Corresponds to the JSON property `causesDrop`
|
1790
1759
|
# @return [Boolean]
|
@@ -1897,7 +1866,6 @@ module Google
|
|
1897
1866
|
# Update properties of this object
|
1898
1867
|
def update!(**args)
|
1899
1868
|
@abort = args[:abort] if args.key?(:abort)
|
1900
|
-
@app_engine_version = args[:app_engine_version] if args.key?(:app_engine_version)
|
1901
1869
|
@causes_drop = args[:causes_drop] if args.key?(:causes_drop)
|
1902
1870
|
@cloud_function = args[:cloud_function] if args.key?(:cloud_function)
|
1903
1871
|
@cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkmanagementV1beta1
|
18
18
|
# Version of the google-apis-networkmanagement_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.23.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220812"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,12 +28,6 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
-
class AppEngineVersionInfo
|
32
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
-
|
34
|
-
include Google::Apis::Core::JsonObjectSupport
|
35
|
-
end
|
36
|
-
|
37
31
|
class AuditConfig
|
38
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
33
|
|
@@ -308,20 +302,11 @@ module Google
|
|
308
302
|
# @private
|
309
303
|
class Representation < Google::Apis::Core::JsonRepresentation
|
310
304
|
property :cause, as: 'cause'
|
305
|
+
collection :projects_missing_permission, as: 'projectsMissingPermission'
|
311
306
|
property :resource_uri, as: 'resourceUri'
|
312
307
|
end
|
313
308
|
end
|
314
309
|
|
315
|
-
class AppEngineVersionInfo
|
316
|
-
# @private
|
317
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
318
|
-
property :display_name, as: 'displayName'
|
319
|
-
property :environment, as: 'environment'
|
320
|
-
property :runtime, as: 'runtime'
|
321
|
-
property :uri, as: 'uri'
|
322
|
-
end
|
323
|
-
end
|
324
|
-
|
325
310
|
class AuditConfig
|
326
311
|
# @private
|
327
312
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -735,8 +720,6 @@ module Google
|
|
735
720
|
class Representation < Google::Apis::Core::JsonRepresentation
|
736
721
|
property :abort, as: 'abort', class: Google::Apis::NetworkmanagementV1beta1::AbortInfo, decorator: Google::Apis::NetworkmanagementV1beta1::AbortInfo::Representation
|
737
722
|
|
738
|
-
property :app_engine_version, as: 'appEngineVersion', class: Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo::Representation
|
739
|
-
|
740
723
|
property :causes_drop, as: 'causesDrop'
|
741
724
|
property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo::Representation
|
742
725
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkmanagement_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.23.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: 2022-
|
11
|
+
date: 2022-08-29 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-networkmanagement_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.23.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|