google-apis-assuredworkloads_v1beta1 0.1.0 → 0.2.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 +5 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/assuredworkloads_v1beta1/classes.rb +11 -1
- data/lib/google/apis/assuredworkloads_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/assuredworkloads_v1beta1/representations.rb +1 -0
- data/lib/google/apis/assuredworkloads_v1beta1/service.rb +1 -1
- data/lib/google/apis/assuredworkloads_v1beta1.rb +1 -1
- 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: 4fb2282350c56da2b27701d15ad97b79abe7ca07e19de7f637c2b5333d53b9f3
|
|
4
|
+
data.tar.gz: 58e96f8ea7ec072e2ce0a09398a7a5a838b19e54ab6b6e7378e5a67e71002777
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a119d8eea345e54c11758b5c8a9ea7469c9d46715e674f39a5d3006cfe7f56b9f9d8b94e010c59bd39acc1899b85bcae69163ef21e61d3b141276e2f2beb9fc4
|
|
7
|
+
data.tar.gz: 54a55a61857f98ba79823255251a64e7828a91a177f6378014fd5bcdc9eb65a0685867e2dd2925a88744dc16f147d0fb31899fd2900ad197b66ef25e0391935e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-assuredworkloads_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.2.0 (2022-10-20)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20221014
|
|
6
|
+
* Regenerated using generator version 0.11.0
|
|
7
|
+
|
|
3
8
|
### v0.1.0 (2022-10-10)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20220930
|
data/OVERVIEW.md
CHANGED
|
@@ -79,7 +79,7 @@ Gem names for modern clients are often of the form `google-cloud-<service_name>`
|
|
|
79
79
|
|
|
80
80
|
**For most users, we recommend the modern client, if one is available.** Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.
|
|
81
81
|
|
|
82
|
-
The [product documentation](https://cloud.google.com) may provide guidance regarding the preferred client library to use.
|
|
82
|
+
The [product documentation](https://cloud.google.com/learnmoreurl) may provide guidance regarding the preferred client library to use.
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
@@ -32,6 +32,15 @@ module Google
|
|
|
32
32
|
# @return [String]
|
|
33
33
|
attr_accessor :comment
|
|
34
34
|
|
|
35
|
+
# Optional. This field is deprecated and will be removed in future version of
|
|
36
|
+
# the API. Name of the OrgPolicy which was modified with non-compliant change
|
|
37
|
+
# and resulted in this violation. Format: projects/`project_number`/policies/`
|
|
38
|
+
# constraint_name` folders/`folder_id`/policies/`constraint_name` organizations/`
|
|
39
|
+
# organization_id`/policies/`constraint_name`
|
|
40
|
+
# Corresponds to the JSON property `nonCompliantOrgPolicy`
|
|
41
|
+
# @return [String]
|
|
42
|
+
attr_accessor :non_compliant_org_policy
|
|
43
|
+
|
|
35
44
|
def initialize(**args)
|
|
36
45
|
update!(**args)
|
|
37
46
|
end
|
|
@@ -39,6 +48,7 @@ module Google
|
|
|
39
48
|
# Update properties of this object
|
|
40
49
|
def update!(**args)
|
|
41
50
|
@comment = args[:comment] if args.key?(:comment)
|
|
51
|
+
@non_compliant_org_policy = args[:non_compliant_org_policy] if args.key?(:non_compliant_org_policy)
|
|
42
52
|
end
|
|
43
53
|
end
|
|
44
54
|
|
|
@@ -392,7 +402,7 @@ module Google
|
|
|
392
402
|
end
|
|
393
403
|
end
|
|
394
404
|
|
|
395
|
-
#
|
|
405
|
+
# A Workload object for managing highly regulated workloads of cloud customers.
|
|
396
406
|
class GoogleCloudAssuredworkloadsV1beta1Workload
|
|
397
407
|
include Google::Apis::Core::Hashable
|
|
398
408
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AssuredworkloadsV1beta1
|
|
18
18
|
# Version of the google-apis-assuredworkloads_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.2.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20221014"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -30,7 +30,7 @@ module Google
|
|
|
30
30
|
# Assuredworkloads = Google::Apis::AssuredworkloadsV1beta1 # Alias the module
|
|
31
31
|
# service = Assuredworkloads::AssuredworkloadsService.new
|
|
32
32
|
#
|
|
33
|
-
# @see https://cloud.google.com
|
|
33
|
+
# @see https://cloud.google.com/learnmoreurl
|
|
34
34
|
class AssuredworkloadsService < Google::Apis::Core::BaseService
|
|
35
35
|
# @return [String]
|
|
36
36
|
# API key. Your API key identifies your project and provides you with API access,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-assuredworkloads_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.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-10-
|
|
11
|
+
date: 2022-10-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.9.
|
|
19
|
+
version: 0.9.1
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 2.a
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.9.
|
|
29
|
+
version: 0.9.1
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 2.a
|
|
@@ -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-assuredworkloads_v1beta1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1beta1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1beta1/v0.2.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-assuredworkloads_v1beta1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|