google-apis-assuredworkloads_v1 0.28.0 → 0.29.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c950502be73d1cd6c529d595c8a85a99f6cc5d01578000e8355fa01cb7a5d1d8
4
- data.tar.gz: ae6a0ffe0486501212193e0d60681767ffa997ae79ffc9b1a26f6e1037413cfc
3
+ metadata.gz: f3a61a51f3769dda368b30891e7b0c0bb3aeb21a47f1810c4feb6f95821fe3e4
4
+ data.tar.gz: 7004f8110ea69fe832cc11ca58b7b87e2938d4b7c6c38a654888ff2c29684c03
5
5
  SHA512:
6
- metadata.gz: 1a9747a40d330716c54bc6b609f7b93600b014f4e215f02b0b6f325510291c11c0029d94d676327b8ae75c27b26aa2912981bf3382bfcac3ded60a7376d6c12b
7
- data.tar.gz: 13356b1a91a0b2dd0944a3689879ae069b733cc17abedbbff3d871709def1a1110cea1f5d146c0645df882d71d032ae655d09ae4b40f383ba3bdc95267a7955a
6
+ metadata.gz: 78867928ca4b03e5b97bfd1ec2d0ca35fdadee212e2463564f5407037fb24d89d47920b5dc28f89490740fd1762ec31284888c007dedb12abe1b8209cfe3574b
7
+ data.tar.gz: 7e72e5b2f4e9bf3f20dc32353aac9b20ee90f767f6b411a20e00ac58f58e14352ae7924f8e290fa2b7a2589f87acccb471c1dc3ee1509e17f7d6c9761497910b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-assuredworkloads_v1
2
2
 
3
+ ### v0.29.0 (2022-10-20)
4
+
5
+ * Regenerated from discovery document revision 20221014
6
+ * Regenerated using generator version 0.11.0
7
+
3
8
  ### v0.28.0 (2022-10-11)
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
 
@@ -410,7 +420,7 @@ module Google
410
420
  end
411
421
  end
412
422
 
413
- # An Workload object for managing highly regulated workloads of cloud customers.
423
+ # A Workload object for managing highly regulated workloads of cloud customers.
414
424
  class GoogleCloudAssuredworkloadsV1Workload
415
425
  include Google::Apis::Core::Hashable
416
426
 
@@ -467,7 +477,9 @@ module Google
467
477
  # @return [String]
468
478
  attr_accessor :kaj_enrollment_state
469
479
 
470
- # Settings specific to the Key Management Service.
480
+ # Settings specific to the Key Management Service. This message is deprecated.
481
+ # In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT
482
+ # or KEYRING in ResourceSettings.resource_type field.
471
483
  # Corresponds to the JSON property `kmsSettings`
472
484
  # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadKmsSettings]
473
485
  attr_accessor :kms_settings
@@ -540,7 +552,9 @@ module Google
540
552
  end
541
553
  end
542
554
 
543
- # Settings specific to the Key Management Service.
555
+ # Settings specific to the Key Management Service. This message is deprecated.
556
+ # In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT
557
+ # or KEYRING in ResourceSettings.resource_type field.
544
558
  class GoogleCloudAssuredworkloadsV1WorkloadKmsSettings
545
559
  include Google::Apis::Core::Hashable
546
560
 
@@ -613,7 +627,7 @@ module Google
613
627
  attr_accessor :resource_id
614
628
 
615
629
  # Indicates the type of resource. This field should be specified to correspond
616
- # the id to the right project type (CONSUMER_PROJECT or ENCRYPTION_KEYS_PROJECT)
630
+ # the id to the right resource type (CONSUMER_FOLDER or ENCRYPTION_KEYS_PROJECT)
617
631
  # Corresponds to the JSON property `resourceType`
618
632
  # @return [String]
619
633
  attr_accessor :resource_type
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AssuredworkloadsV1
18
18
  # Version of the google-apis-assuredworkloads_v1 gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220930"
25
+ REVISION = "20221014"
26
26
  end
27
27
  end
28
28
  end
@@ -152,6 +152,7 @@ module Google
152
152
  # @private
153
153
  class Representation < Google::Apis::Core::JsonRepresentation
154
154
  property :comment, as: 'comment'
155
+ property :non_compliant_org_policy, as: 'nonCompliantOrgPolicy'
155
156
  end
156
157
  end
157
158
 
@@ -30,7 +30,7 @@ module Google
30
30
  # Assuredworkloads = Google::Apis::AssuredworkloadsV1 # 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,
@@ -205,7 +205,7 @@ module Google
205
205
 
206
206
  # Gets Assured Workload associated with a CRM Node
207
207
  # @param [String] name
208
- # Required. The resource name of the Workload to fetch. This is the workloads's
208
+ # Required. The resource name of the Workload to fetch. This is the workload's
209
209
  # relative path in the API, formatted as "organizations/`organization_id`/
210
210
  # locations/`location_id`/workloads/`workload_id`". For example, "organizations/
211
211
  # 123/locations/us-east1/workloads/assured-workload-1".
@@ -23,7 +23,7 @@ module Google
23
23
  #
24
24
  #
25
25
  #
26
- # @see https://cloud.google.com
26
+ # @see https://cloud.google.com/learnmoreurl
27
27
  module AssuredworkloadsV1
28
28
  # Version of the Assured Workloads API this client connects to.
29
29
  # This is NOT the gem version.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-assuredworkloads_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.29.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-17 00:00:00.000000000 Z
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.0
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.0
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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1/v0.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1/v0.29.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-assuredworkloads_v1
63
63
  post_install_message:
64
64
  rdoc_options: []