google-apis-osconfig_v1beta 0.32.0 → 0.33.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: ab060a65c78de555d753c92302d5e64e7d928c8670c299354165a51cba653169
|
|
4
|
+
data.tar.gz: 26702c6c9e9bf2458cf4063b43518180283de0467ec40495587b08fdfa924c8c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 943a78ff0be734c71fa797f1a7e0121e9aecbb5a8c41b0964eeec0cd2ed66a8e94c36ab9b290eddccfb0a241dde001ba5183a7f2617f48883b9e767e12f8b561
|
|
7
|
+
data.tar.gz: 4a268dd38fb3869335e04d4bb2917cb379ccd816d93a3022c8075f0d171311b527d26b5bda05354249383869d98087a1c1a3fba696e936f6a9bad1b9d20be933
|
data/CHANGELOG.md
CHANGED
|
@@ -597,6 +597,183 @@ module Google
|
|
|
597
597
|
end
|
|
598
598
|
end
|
|
599
599
|
|
|
600
|
+
# Represents the metadata of a generic long-running operation.
|
|
601
|
+
class GoogleCloudOsconfigCommonV1OperationMetadata
|
|
602
|
+
include Google::Apis::Core::Hashable
|
|
603
|
+
|
|
604
|
+
# Output only. API version used to start the operation.
|
|
605
|
+
# Corresponds to the JSON property `apiVersion`
|
|
606
|
+
# @return [String]
|
|
607
|
+
attr_accessor :api_version
|
|
608
|
+
|
|
609
|
+
# Output only. The time the operation was created.
|
|
610
|
+
# Corresponds to the JSON property `createTime`
|
|
611
|
+
# @return [String]
|
|
612
|
+
attr_accessor :create_time
|
|
613
|
+
|
|
614
|
+
# Output only. The time the operation finished running.
|
|
615
|
+
# Corresponds to the JSON property `endTime`
|
|
616
|
+
# @return [String]
|
|
617
|
+
attr_accessor :end_time
|
|
618
|
+
|
|
619
|
+
# Output only. Identifies whether the user has requested cancellation of the
|
|
620
|
+
# operation. Operations that have successfully been cancelled have Operation.
|
|
621
|
+
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
|
622
|
+
# CANCELLED`.
|
|
623
|
+
# Corresponds to the JSON property `requestedCancellation`
|
|
624
|
+
# @return [Boolean]
|
|
625
|
+
attr_accessor :requested_cancellation
|
|
626
|
+
alias_method :requested_cancellation?, :requested_cancellation
|
|
627
|
+
|
|
628
|
+
# Output only. Human-readable status of the operation, if any.
|
|
629
|
+
# Corresponds to the JSON property `statusMessage`
|
|
630
|
+
# @return [String]
|
|
631
|
+
attr_accessor :status_message
|
|
632
|
+
|
|
633
|
+
# Output only. Server-defined resource path for the target of the operation.
|
|
634
|
+
# Corresponds to the JSON property `target`
|
|
635
|
+
# @return [String]
|
|
636
|
+
attr_accessor :target
|
|
637
|
+
|
|
638
|
+
# Output only. Name of the verb executed by the operation.
|
|
639
|
+
# Corresponds to the JSON property `verb`
|
|
640
|
+
# @return [String]
|
|
641
|
+
attr_accessor :verb
|
|
642
|
+
|
|
643
|
+
def initialize(**args)
|
|
644
|
+
update!(**args)
|
|
645
|
+
end
|
|
646
|
+
|
|
647
|
+
# Update properties of this object
|
|
648
|
+
def update!(**args)
|
|
649
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
|
650
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
651
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
|
652
|
+
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
|
653
|
+
@status_message = args[:status_message] if args.key?(:status_message)
|
|
654
|
+
@target = args[:target] if args.key?(:target)
|
|
655
|
+
@verb = args[:verb] if args.key?(:verb)
|
|
656
|
+
end
|
|
657
|
+
end
|
|
658
|
+
|
|
659
|
+
# Represents the metadata of a generic long-running operation.
|
|
660
|
+
class GoogleCloudOsconfigCommonV1alphaOperationMetadata
|
|
661
|
+
include Google::Apis::Core::Hashable
|
|
662
|
+
|
|
663
|
+
# Output only. API version used to start the operation.
|
|
664
|
+
# Corresponds to the JSON property `apiVersion`
|
|
665
|
+
# @return [String]
|
|
666
|
+
attr_accessor :api_version
|
|
667
|
+
|
|
668
|
+
# Output only. The time the operation was created.
|
|
669
|
+
# Corresponds to the JSON property `createTime`
|
|
670
|
+
# @return [String]
|
|
671
|
+
attr_accessor :create_time
|
|
672
|
+
|
|
673
|
+
# Output only. The time the operation finished running.
|
|
674
|
+
# Corresponds to the JSON property `endTime`
|
|
675
|
+
# @return [String]
|
|
676
|
+
attr_accessor :end_time
|
|
677
|
+
|
|
678
|
+
# Output only. Identifies whether the user has requested cancellation of the
|
|
679
|
+
# operation. Operations that have successfully been cancelled have Operation.
|
|
680
|
+
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
|
681
|
+
# CANCELLED`.
|
|
682
|
+
# Corresponds to the JSON property `requestedCancellation`
|
|
683
|
+
# @return [Boolean]
|
|
684
|
+
attr_accessor :requested_cancellation
|
|
685
|
+
alias_method :requested_cancellation?, :requested_cancellation
|
|
686
|
+
|
|
687
|
+
# Output only. Human-readable status of the operation, if any.
|
|
688
|
+
# Corresponds to the JSON property `statusMessage`
|
|
689
|
+
# @return [String]
|
|
690
|
+
attr_accessor :status_message
|
|
691
|
+
|
|
692
|
+
# Output only. Server-defined resource path for the target of the operation.
|
|
693
|
+
# Corresponds to the JSON property `target`
|
|
694
|
+
# @return [String]
|
|
695
|
+
attr_accessor :target
|
|
696
|
+
|
|
697
|
+
# Output only. Name of the verb executed by the operation.
|
|
698
|
+
# Corresponds to the JSON property `verb`
|
|
699
|
+
# @return [String]
|
|
700
|
+
attr_accessor :verb
|
|
701
|
+
|
|
702
|
+
def initialize(**args)
|
|
703
|
+
update!(**args)
|
|
704
|
+
end
|
|
705
|
+
|
|
706
|
+
# Update properties of this object
|
|
707
|
+
def update!(**args)
|
|
708
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
|
709
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
710
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
|
711
|
+
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
|
712
|
+
@status_message = args[:status_message] if args.key?(:status_message)
|
|
713
|
+
@target = args[:target] if args.key?(:target)
|
|
714
|
+
@verb = args[:verb] if args.key?(:verb)
|
|
715
|
+
end
|
|
716
|
+
end
|
|
717
|
+
|
|
718
|
+
# Represents the metadata of a generic long-running operation.
|
|
719
|
+
class GoogleCloudOsconfigCommonV1mainOperationMetadata
|
|
720
|
+
include Google::Apis::Core::Hashable
|
|
721
|
+
|
|
722
|
+
# Output only. API version used to start the operation.
|
|
723
|
+
# Corresponds to the JSON property `apiVersion`
|
|
724
|
+
# @return [String]
|
|
725
|
+
attr_accessor :api_version
|
|
726
|
+
|
|
727
|
+
# Output only. The time the operation was created.
|
|
728
|
+
# Corresponds to the JSON property `createTime`
|
|
729
|
+
# @return [String]
|
|
730
|
+
attr_accessor :create_time
|
|
731
|
+
|
|
732
|
+
# Output only. The time the operation finished running.
|
|
733
|
+
# Corresponds to the JSON property `endTime`
|
|
734
|
+
# @return [String]
|
|
735
|
+
attr_accessor :end_time
|
|
736
|
+
|
|
737
|
+
# Output only. Identifies whether the user has requested cancellation of the
|
|
738
|
+
# operation. Operations that have successfully been cancelled have Operation.
|
|
739
|
+
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
|
740
|
+
# CANCELLED`.
|
|
741
|
+
# Corresponds to the JSON property `requestedCancellation`
|
|
742
|
+
# @return [Boolean]
|
|
743
|
+
attr_accessor :requested_cancellation
|
|
744
|
+
alias_method :requested_cancellation?, :requested_cancellation
|
|
745
|
+
|
|
746
|
+
# Output only. Human-readable status of the operation, if any.
|
|
747
|
+
# Corresponds to the JSON property `statusMessage`
|
|
748
|
+
# @return [String]
|
|
749
|
+
attr_accessor :status_message
|
|
750
|
+
|
|
751
|
+
# Output only. Server-defined resource path for the target of the operation.
|
|
752
|
+
# Corresponds to the JSON property `target`
|
|
753
|
+
# @return [String]
|
|
754
|
+
attr_accessor :target
|
|
755
|
+
|
|
756
|
+
# Output only. Name of the verb executed by the operation.
|
|
757
|
+
# Corresponds to the JSON property `verb`
|
|
758
|
+
# @return [String]
|
|
759
|
+
attr_accessor :verb
|
|
760
|
+
|
|
761
|
+
def initialize(**args)
|
|
762
|
+
update!(**args)
|
|
763
|
+
end
|
|
764
|
+
|
|
765
|
+
# Update properties of this object
|
|
766
|
+
def update!(**args)
|
|
767
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
|
768
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
769
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
|
770
|
+
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
|
771
|
+
@status_message = args[:status_message] if args.key?(:status_message)
|
|
772
|
+
@target = args[:target] if args.key?(:target)
|
|
773
|
+
@verb = args[:verb] if args.key?(:verb)
|
|
774
|
+
end
|
|
775
|
+
end
|
|
776
|
+
|
|
600
777
|
# OS policy assignment operation metadata provided by OS policy assignment API
|
|
601
778
|
# methods that return long running operations.
|
|
602
779
|
class GoogleCloudOsconfigV1OsPolicyAssignmentOperationMetadata
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module OsconfigV1beta
|
|
18
18
|
# Version of the google-apis-osconfig_v1beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.33.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260108"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -130,6 +130,24 @@ module Google
|
|
|
130
130
|
include Google::Apis::Core::JsonObjectSupport
|
|
131
131
|
end
|
|
132
132
|
|
|
133
|
+
class GoogleCloudOsconfigCommonV1OperationMetadata
|
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
135
|
+
|
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
class GoogleCloudOsconfigCommonV1alphaOperationMetadata
|
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
141
|
+
|
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
class GoogleCloudOsconfigCommonV1mainOperationMetadata
|
|
146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
147
|
+
|
|
148
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
149
|
+
end
|
|
150
|
+
|
|
133
151
|
class GoogleCloudOsconfigV1OsPolicyAssignmentOperationMetadata
|
|
134
152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
135
153
|
|
|
@@ -586,6 +604,45 @@ module Google
|
|
|
586
604
|
end
|
|
587
605
|
end
|
|
588
606
|
|
|
607
|
+
class GoogleCloudOsconfigCommonV1OperationMetadata
|
|
608
|
+
# @private
|
|
609
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
610
|
+
property :api_version, as: 'apiVersion'
|
|
611
|
+
property :create_time, as: 'createTime'
|
|
612
|
+
property :end_time, as: 'endTime'
|
|
613
|
+
property :requested_cancellation, as: 'requestedCancellation'
|
|
614
|
+
property :status_message, as: 'statusMessage'
|
|
615
|
+
property :target, as: 'target'
|
|
616
|
+
property :verb, as: 'verb'
|
|
617
|
+
end
|
|
618
|
+
end
|
|
619
|
+
|
|
620
|
+
class GoogleCloudOsconfigCommonV1alphaOperationMetadata
|
|
621
|
+
# @private
|
|
622
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
623
|
+
property :api_version, as: 'apiVersion'
|
|
624
|
+
property :create_time, as: 'createTime'
|
|
625
|
+
property :end_time, as: 'endTime'
|
|
626
|
+
property :requested_cancellation, as: 'requestedCancellation'
|
|
627
|
+
property :status_message, as: 'statusMessage'
|
|
628
|
+
property :target, as: 'target'
|
|
629
|
+
property :verb, as: 'verb'
|
|
630
|
+
end
|
|
631
|
+
end
|
|
632
|
+
|
|
633
|
+
class GoogleCloudOsconfigCommonV1mainOperationMetadata
|
|
634
|
+
# @private
|
|
635
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
636
|
+
property :api_version, as: 'apiVersion'
|
|
637
|
+
property :create_time, as: 'createTime'
|
|
638
|
+
property :end_time, as: 'endTime'
|
|
639
|
+
property :requested_cancellation, as: 'requestedCancellation'
|
|
640
|
+
property :status_message, as: 'statusMessage'
|
|
641
|
+
property :target, as: 'target'
|
|
642
|
+
property :verb, as: 'verb'
|
|
643
|
+
end
|
|
644
|
+
end
|
|
645
|
+
|
|
589
646
|
class GoogleCloudOsconfigV1OsPolicyAssignmentOperationMetadata
|
|
590
647
|
# @private
|
|
591
648
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-osconfig_v1beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.33.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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-osconfig_v1beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1beta/v0.33.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-osconfig_v1beta
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|